Mercurial > mplayer.hg
annotate osdep/Makefile @ 22679:604a0943980f
add ffdca decoder
author | compn |
---|---|
date | Sat, 17 Mar 2007 15:28:02 +0000 |
parents | 090ec2169aee |
children | bf78d0e672d3 |
rev | line source |
---|---|
2444 | 1 include ../config.mak |
2 | |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
3 LIBNAME_COMMON = libosdep.a |
2444 | 4 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
5 SRCS_COMMON-$(HAVE_SYS_MMAN_H) += mmap_anon.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
6 SRCS_COMMON-$(MACOSX_FINDER_SUPPORT) += macosx_finder_args.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
7 SRCS_COMMON-$(STREAM_CACHE) += shmem.c |
2444 | 8 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
9 SRCS_COMMON-$(NEED_FSEEKO) += fseeko.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
10 SRCS_COMMON-$(NEED_FTELLO) += ftello.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
11 SRCS_COMMON-$(NEED_GETTIMEOFDAY) += gettimeofday.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
12 SRCS_COMMON-$(NEED_GLOB) += glob-win.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
13 SRCS_COMMON-$(NEED_SCANDIR) += scandir.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
14 SRCS_COMMON-$(NEED_SETENV) += setenv.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
15 SRCS_COMMON-$(NEED_STRLCAT) += strlcat.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
16 SRCS_COMMON-$(NEED_STRLCPY) += strlcpy.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
17 SRCS_COMMON-$(NEED_STRSEP) += strsep.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
18 SRCS_COMMON-$(NEED_SWAB) += swab.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
19 SRCS_COMMON-$(NEED_VSSCANF) += vsscanf.c |
21309 | 20 |
9830 | 21 getch = getch2.c |
22 timer = timer-lx.c | |
21189
40bb3d20a10b
Move osdep/mplayer.rc handling to the osdep Makefile.
diego
parents:
21187
diff
changeset
|
23 ifeq ($(TARGET_WIN32),yes) |
21297 | 24 timer = timer-win2.c |
21189
40bb3d20a10b
Move osdep/mplayer.rc handling to the osdep Makefile.
diego
parents:
21187
diff
changeset
|
25 endif |
10148
139b44930abc
Precise timer for Darwin (it's more accurate than timer-macosx.c)
alex
parents:
9983
diff
changeset
|
26 ifeq ($(TARGET_OS),Darwin) |
139b44930abc
Precise timer for Darwin (it's more accurate than timer-macosx.c)
alex
parents:
9983
diff
changeset
|
27 timer = timer-darwin.c |
9830 | 28 endif |
12706 | 29 ifeq ($(TARGET_OS),MINGW32) |
9830 | 30 getch = getch2-win.c |
31 endif | |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
32 SRCS_COMMON += $(timer) |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22348
diff
changeset
|
33 SRCS_COMMON += $(getch) |
9465
350b660ef93c
precise macosx timer by Dan Christiansen <danchr@daimi.au.dk> and 10l fix by me
alex
parents:
9380
diff
changeset
|
34 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
35 include ../mpcommon.mak |
21194 | 36 |
21189
40bb3d20a10b
Move osdep/mplayer.rc handling to the osdep Makefile.
diego
parents:
21187
diff
changeset
|
37 mplayer-rc.o: mplayer.rc |
40bb3d20a10b
Move osdep/mplayer.rc handling to the osdep Makefile.
diego
parents:
21187
diff
changeset
|
38 windres -o $@ $< |