Mercurial > mplayer.hg
annotate libmpeg2/Makefile @ 22528:8bcff5c7e387
Give more descriptive names to the source and library variables and split
between common, MPlayer-specific and MEncoder-specific parts.
author | diego |
---|---|
date | Tue, 13 Mar 2007 12:10:57 +0000 |
parents | 5dc92a83d58a |
children | 090ec2169aee |
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:
22527
diff
changeset
|
3 LIBNAME_COMMON = libmpeg2.a |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22527
diff
changeset
|
4 |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22527
diff
changeset
|
5 SRCS_COMMON = alloc.c \ |
17943
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
6 cpu_accel.c\ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
7 cpu_state.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
8 decode.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
9 header.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
10 idct.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
11 motion_comp.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
12 slice.c \ |
9852 | 13 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22527
diff
changeset
|
14 SRCS_COMMON-$(TARGET_MMX) += idct_mmx.c motion_comp_mmx.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22527
diff
changeset
|
15 SRCS_COMMON-$(TARGET_ALTIVEC) += motion_comp_altivec.c idct_altivec.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22527
diff
changeset
|
16 SRCS_COMMON-$(TARGET_VIS) += motion_comp_vis.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22527
diff
changeset
|
17 SRCS_COMMON-$(TARGET_ARCH_ALPHA) += idct_alpha.c motion_comp_alpha.c |
21309 | 18 |
22527 | 19 CFLAGS = -I../libvo |
1 | 20 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
21 include ../mpcommon.mak |