Mercurial > mplayer.hg
annotate loader/Makefile @ 26313:270df0673cc2
reset() should not senselessly close and reopen
the device but instead just call flush_audio()
author | reimar |
---|---|
date | Mon, 07 Apr 2008 17:39:41 +0000 |
parents | 468db9b6860c |
children | d4f4ce3534c3 |
rev | line source |
---|---|
1 | 1 include ../config.mak |
2 | |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22305
diff
changeset
|
3 LIBNAME_COMMON = libloader.a |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
4 |
21178 | 5 #CFLAGS+=-Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT |
21169
8a017ed1c615
Remove bug workarounds for ancient gcc and libc versions.
diego
parents:
20835
diff
changeset
|
6 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22305
diff
changeset
|
7 SRCS_COMMON = driver.c afl.c vfl.c |
26118 | 8 SRCS_COMMON-$(QTX_EMULATION) += wrapper.S |
9 SRCS_COMMON-$(WIN32_EMULATION) += elfdll.c \ | |
10 ext.c \ | |
11 ldt_keeper.c \ | |
12 module.c \ | |
13 pe_image.c \ | |
14 pe_resource.c \ | |
15 registry.c \ | |
16 resource.c \ | |
17 win32.c \ | |
1 | 18 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22305
diff
changeset
|
19 SRCS_COMMON += dshow/DS_AudioDecoder.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
20 dshow/DS_Filter.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
21 dshow/DS_VideoDecoder.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
22 dshow/allocator.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
23 dshow/mediatype.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
24 dshow/cmediasample.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
25 dshow/guids.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
26 dshow/inputpin.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
27 dshow/outputpin.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
28 dmo/DMO_AudioDecoder.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
29 dmo/DMO_VideoDecoder.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
30 dmo/buffer.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
31 dmo/dmo.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
32 dmo/dmo_guids.c \ |
21185 | 33 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
34 include ../mpcommon.mak |
21183 | 35 |
26048
232cb92a2f1c
Check for -mno-omit-leaf-frame-pointer (compilation fix for icc 10.1.012).
cehoyos
parents:
25594
diff
changeset
|
36 CFLAGS+=-fno-omit-frame-pointer $(CFLAG_NO_OMIT_LEAF_FRAME_POINTER) |
26115
3eedbd7321ea
Add CFLAG_STACKREALIGN unconditionally to win32.o CFLAGS, configure takes care
diego
parents:
26048
diff
changeset
|
37 win32.o: CFLAGS += $(CFLAG_STACKREALIGN) |
21624
78e06aec663a
Fix crashes in loader code: There is still some code that can not handle omitted frame pointers.
reimar
parents:
21368
diff
changeset
|
38 |
25586
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
39 TEST_OBJS = $(LIBNAME_COMMON) ../cpudetect.o ../mp_msg.o ../mp_fifo.o ../osdep/libosdep.a |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
40 TEST_LDFLAGS = -ltermcap -ldl -lm -lpthread -g |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
41 |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
42 dshow/test: dshow/test.c ../get_path.o $(TEST_OBJS) |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
43 $(CC) $(CFLAGS) -o $@ $^ $(TEST_LDFLAGS) -lstdc++ |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
44 |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
45 qtx/qtxload: qtx/qtxload.c $(TEST_OBJS) |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
46 $(CC) -o $@ $^ $(TEST_LDFLAGS) |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
47 |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
48 qtx/list: qtx/list.c $(TEST_OBJS) |
2c25326ad773
Add proper compilation rules for qtx/list and qtx/qtxload and remove silly
diego
parents:
25585
diff
changeset
|
49 $(CC) -o $@ $^ $(TEST_LDFLAGS) |
21185 | 50 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21218
diff
changeset
|
51 clean:: |
21185 | 52 rm -f dshow/*.o dshow/*.a dshow/*~ |
53 rm -f dmo/*.o dmo/*.a dmo/*~ | |
21218 | 54 rm -f dshow/test dshow/test.raw |
25594 | 55 rm -f qtx/list qtx/qtxload |