annotate mp3lib/Makefile @ 26497:90533188c926

Take name of getch file to link against from config.mak.
author diego
date Fri, 25 Apr 2008 08:28:33 +0000
parents dc333dff8376
children 4cbbdb2e71ca
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1258
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
1 include ../config.mak
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2
26466
d4f4ce3534c3 Use directory name as library name template.
diego
parents: 25350
diff changeset
3 LIBNAME_COMMON = mp3lib.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
25350
2095f98cf0fa cosmetics: Remove ugly and inconsistent uppercasing from filenames.
diego
parents: 23664
diff changeset
6 SRCS_COMMON-$(HAVE_MMX) += decode_mmx.c
23664
f19f12214991 Get rid of duplicate processor feature variables.
diego
parents: 23543
diff changeset
7 SRCS_COMMON-$(HAVE_SSE) += dct64_sse.c
22531
090ec2169aee cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents: 22528
diff changeset
8 SRCS_COMMON += decode_i586.c
26484
dc333dff8376 Expand conditional addition of elements to variables with a form that permits
diego
parents: 26466
diff changeset
9 SRCS_COMMON-$(ARCH_X86_32)-$(HAVE_MMX) += dct64_mmx.c
dc333dff8376 Expand conditional addition of elements to variables with a form that permits
diego
parents: 26466
diff changeset
10 SRCS_COMMON-$(ARCH_X86_32)-$(HAVE_3DNOW) += dct36_3dnow.c dct64_3dnow.c
dc333dff8376 Expand conditional addition of elements to variables with a form that permits
diego
parents: 26466
diff changeset
11 SRCS_COMMON-$(ARCH_X86_32)-$(HAVE_3DNOWEX) += dct36_k7.c dct64_k7.c
23664
f19f12214991 Get rid of duplicate processor feature variables.
diego
parents: 23543
diff changeset
12 SRCS_COMMON-$(HAVE_ALTIVEC) += dct64_altivec.c
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents: 21206
diff changeset
14 include ../mpcommon.mak
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
15
22597
f826f57be4b4 Simplify setting special CFLAGS for decode_i586.o.
diego
parents: 22595
diff changeset
16 decode_i586.o: CFLAGS += -fomit-frame-pointer
8543
60fe896e437c decode_i586.c version uses %ebp for its own use, so:
arpi
parents: 7234
diff changeset
17
26497
90533188c926 Take name of getch file to link against from config.mak.
diego
parents: 26484
diff changeset
18 %: %.c $(LIBNAME_COMMON) ../libvo/aclib.o ../mp_msg-mencoder.o ../cpudetect.o ../osdep/$(GETCH:.c=.o)
22537
fffc3a54fd66 Fix test program compilation.
diego
parents: 22536
diff changeset
19 $(CC) $(CFLAGS) -o $@ $^ -ltermcap -lm