Mercurial > mplayer.hg
annotate mp3lib/Makefile @ 23006:512a16ec4bcb
Mono audio should be supported by NAS, too.
Patch by Erik Auerswald {auerswal -at- unix-ag <dot> uni-kl de}
author | reimar |
---|---|
date | Thu, 19 Apr 2007 16:28:59 +0000 |
parents | afb7111123bb |
children | 84eaacdc380d |
rev | line source |
---|---|
1258 | 1 include ../config.mak |
1 | 2 |
22536
b19e2fb20a41
Rename mp3lib/libMP3.a to mp3lib/libmp3.a for consistency.
diego
parents:
22531
diff
changeset
|
3 LIBNAME_COMMON = libmp3.a |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
4 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21309
diff
changeset
|
5 SRCS_COMMON = sr1.c |
20575 | 6 ifeq ($(TARGET_ARCH_X86_32),yes) |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
7 SRCS_COMMON += decode_i586.c |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21309
diff
changeset
|
8 SRCS_COMMON-$(TARGET_MMX) += decode_MMX.c dct64_MMX.c tabinit_MMX.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21309
diff
changeset
|
9 SRCS_COMMON-$(TARGET_3DNOW) += dct36_3dnow.c dct64_3dnow.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21309
diff
changeset
|
10 SRCS_COMMON-$(TARGET_3DNOWEX) += dct36_k7.c dct64_k7.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21309
diff
changeset
|
11 SRCS_COMMON-$(TARGET_SSE) += dct64_sse.c |
1258 | 12 endif |
22595 | 13 SRCS_COMMON-$(TARGET_ALTIVEC) += dct64_altivec.c |
1 | 14 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
15 include ../mpcommon.mak |
1 | 16 |
22597 | 17 decode_i586.o: CFLAGS += -fomit-frame-pointer |
8543 | 18 |
22537 | 19 %: %.c $(LIBNAME_COMMON) ../libvo/aclib.o ../mp_msg-mencoder.o ../cpudetect.o ../osdep/getch2.o |
20 $(CC) $(CFLAGS) -o $@ $^ -ltermcap -lm |