Mercurial > mplayer.hg
annotate loader/Makefile @ 22023:3fba002aa79a
Accept rdt packets with "is-reliable" flag set
author | rtogni |
---|---|
date | Sun, 28 Jan 2007 12:49:44 +0000 |
parents | 78e06aec663a |
children | 3d1b23cf3d08 |
rev | line source |
---|---|
1 | 1 include ../config.mak |
2 | |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
3 LIBNAME = libloader.a |
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
4 |
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
5 CFLAGS= -Idshow -DMPLAYER -D__WINE__ -DNOAVIFILE_HEADERS |
21178 | 6 #CFLAGS+=-Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT |
21169
8a017ed1c615
Remove bug workarounds for ancient gcc and libc versions.
diego
parents:
20835
diff
changeset
|
7 |
20825 | 8 SRCS= driver.c afl.c vfl.c |
9 ifneq ($(TARGET_WIN32),yes) | |
10 SRCS+= ldt_keeper.c pe_image.c module.c ext.c win32.c \ | |
21368 | 11 pe_resource.c resource.c registry.c elfdll.c |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21259
diff
changeset
|
12 # QTX emulation is not supported in Darwin |
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21259
diff
changeset
|
13 ifneq ($(TARGET_OS),Darwin) |
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21259
diff
changeset
|
14 SRCS+= wrapper.S |
12680 | 15 endif |
21315
410a59bd1897
wrapper.S should be compiled on non-Darwin, non-Windows systems.
diego
parents:
21298
diff
changeset
|
16 endif |
1 | 17 |
21185 | 18 SRCS+= dshow/DS_AudioDecoder.c \ |
19 dshow/DS_Filter.c \ | |
20 dshow/DS_VideoDecoder.c \ | |
21 dshow/allocator.c \ | |
22 dshow/cmediasample.c \ | |
23 dshow/guids.c \ | |
24 dshow/inputpin.c \ | |
25 dshow/outputpin.c \ | |
26 dmo/DMO_AudioDecoder.c \ | |
27 dmo/DMO_VideoDecoder.c \ | |
28 dmo/buffer.c \ | |
29 dmo/dmo.c \ | |
30 dmo/dmo_guids.c \ | |
31 | |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
32 include ../mpcommon.mak |
21183 | 33 |
21624
78e06aec663a
Fix crashes in loader code: There is still some code that can not handle omitted frame pointers.
reimar
parents:
21368
diff
changeset
|
34 CFLAGS+=-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer |
78e06aec663a
Fix crashes in loader code: There is still some code that can not handle omitted frame pointers.
reimar
parents:
21368
diff
changeset
|
35 |
21298 | 36 dshow/test: dshow/test.c $(LIBNAME) |
37 $(CC) $(CFLAGS) -o $@ $^ -lstdc++ | |
21185 | 38 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
39 clean:: |
21185 | 40 rm -f dshow/*.o dshow/*.a dshow/*~ |
41 rm -f dmo/*.o dmo/*.a dmo/*~ | |
1 | 42 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
43 distclean:: |
21218 | 44 rm -f dshow/test dshow/test.raw |