Mercurial > mplayer.hg
annotate libmpeg2/Makefile @ 22126:b49bc3a14c3c
some more docbook paths, patch by Torinthiel
author | diego |
---|---|
date | Mon, 05 Feb 2007 14:17:33 +0000 |
parents | ef59ac68c9b6 |
children | 5dc92a83d58a |
rev | line source |
---|---|
1 | 1 |
2 LIBNAME = libmpeg2.a | |
3 | |
4 include ../config.mak | |
5 | |
17943
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
6 SRCS = alloc.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
7 cpu_accel.c\ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
8 cpu_state.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
9 decode.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
10 header.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
11 idct.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
12 motion_comp.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
13 slice.c \ |
9852 | 14 |
21309 | 15 SRCS-$(TARGET_MMX) += idct_mmx.c motion_comp_mmx.c |
16 SRCS-$(TARGET_ALTIVEC) += motion_comp_altivec.c idct_altivec.c | |
17 SRCS-$(TARGET_VIS) += motion_comp_vis.c | |
18 SRCS-$(TARGET_ARCH_ALPHA) += idct_alpha.c motion_comp_alpha.c | |
19 | |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
20 CFLAGS = -I../libvo -DMPG12PLAY |
1 | 21 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
22 include ../mpcommon.mak |