annotate mp3lib/Makefile @ 4244:f1efe9e55647

rewrites symbols in d_cpu.s on cygwin
author atmos4
date Sat, 19 Jan 2002 04:42:09 +0000
parents 866c74e83b08
children ae847143d1d7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1
1258
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
2 include ../config.mak
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
1270
8a9fa696b77d Minor cleanups
nick
parents: 1258
diff changeset
4 SRCS = sr1.c
8a9fa696b77d Minor cleanups
nick
parents: 1258
diff changeset
5 OBJS = sr1.o
866
91087aaea5c7 using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents: 826
diff changeset
6 # OBJS = $(SRCS:.c,.s=.o)
2450
f51307170f69 MIPS support by oliver.schoenbrunner@jku.at
arpi
parents: 1461
diff changeset
7 ifeq ($(TARGET_ARCH_SGI_MIPS),yes)
f51307170f69 MIPS support by oliver.schoenbrunner@jku.at
arpi
parents: 1461
diff changeset
8 OPTFLAGS := $(OPTFLAGS:-O4=-O0)
f51307170f69 MIPS support by oliver.schoenbrunner@jku.at
arpi
parents: 1461
diff changeset
9 endif
1234
dfccdda074e5 OPTFLAGS vs. INCLUDES cleanup
arpi
parents: 1010
diff changeset
10 CFLAGS = $(OPTFLAGS) $(EXTRA_INC)
1258
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
11 ifeq ($(TARGET_ARCH_X86),yes)
4147
nick
parents: 4142
diff changeset
12 SRCS += d_cpu.s decode_i586.c
1270
8a9fa696b77d Minor cleanups
nick
parents: 1258
diff changeset
13 OBJS += d_cpu.o decode_i586.o
1258
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
14 ifeq ($(TARGET_MMX),yes)
4179
866c74e83b08 Fix "[MPlayer-dev-eng] mp3lib-mmx sig11 with mpeg1layer3 audio after
kmkaplan
parents: 4165
diff changeset
15 CFLAGS += -fomit-frame-pointer
4165
nick
parents: 4148
diff changeset
16 SRCS += decode_MMX.c dct64_MMX.c tabinit_MMX.c
1258
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
17 OBJS += decode_MMX.o dct64_MMX.o tabinit_MMX.o
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
18 endif
3203
8312f4bc8dab Disable SSE code and reenable FPU dct for SSE cpus (fpu code is 0.3% faster and I don't get data aligned in dct64_sse.s, so I can't finish optimizing it)
atmos4
parents: 2450
diff changeset
19 #ifeq ($(TARGET_SSE),yes)
8312f4bc8dab Disable SSE code and reenable FPU dct for SSE cpus (fpu code is 0.3% faster and I don't get data aligned in dct64_sse.s, so I can't finish optimizing it)
atmos4
parents: 2450
diff changeset
20 #SRCS += dct64_sse.s
8312f4bc8dab Disable SSE code and reenable FPU dct for SSE cpus (fpu code is 0.3% faster and I don't get data aligned in dct64_sse.s, so I can't finish optimizing it)
atmos4
parents: 2450
diff changeset
21 #OBJS += dct64_sse.o
8312f4bc8dab Disable SSE code and reenable FPU dct for SSE cpus (fpu code is 0.3% faster and I don't get data aligned in dct64_sse.s, so I can't finish optimizing it)
atmos4
parents: 2450
diff changeset
22 #endif
1258
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
23 ifeq ($(TARGET_3DNOW),yes)
4148
nick
parents: 4147
diff changeset
24 SRCS += dct36_3dnow.s dct64_3dnow.c
1258
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
25 OBJS += dct36_3dnow.o dct64_3dnow.o
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
26 endif
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
27 ifeq ($(TARGET_3DNOWEX),yes)
4148
nick
parents: 4147
diff changeset
28 SRCS += dct36_k7.s dct64_k7.c
1258
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
29 OBJS += dct36_k7.o dct64_k7.o
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
30 endif
50b8a3a5eeed Portability and old binutils support
nick
parents: 1245
diff changeset
31 endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
32
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
33 .SUFFIXES: .c .o
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
34
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
35 # .PHONY: all clean
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
36
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
37 .c.o:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
38 $(CC) -c $(CFLAGS) -o $@ $<
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
39
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
40 .s.o:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
41 $(CC) -c $(CFLAGS) -o $@ $<
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
42
1010
6d3a6d42c831 dependency stuff fixed
arpi_esp
parents: 866
diff changeset
43 libMP3.a: $(OBJS)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
44 $(AR) r libMP3.a $(OBJS)
4244
f1efe9e55647 rewrites symbols in d_cpu.s on cygwin
atmos4
parents: 4179
diff changeset
45 ifeq ($(TARGET_OS),CYGWIN)
f1efe9e55647 rewrites symbols in d_cpu.s on cygwin
atmos4
parents: 4179
diff changeset
46 ./mp3lib_objfix.sh
f1efe9e55647 rewrites symbols in d_cpu.s on cygwin
atmos4
parents: 4179
diff changeset
47 endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
48
789
989b921361d0 test2 added for playback test, testreanmed to test1 to make Atmosfear happy...
arpi_esp
parents: 788
diff changeset
49 test1: libMP3.a test.c
1461
5a748a93b7b4 Fixed Makefile for test programs.
atmos4
parents: 1393
diff changeset
50 $(CC) $(CFLAGS) test.c ../libvo/aclib.c -o test1 -I.. -L. -lMP3 -lm
789
989b921361d0 test2 added for playback test, testreanmed to test1 to make Atmosfear happy...
arpi_esp
parents: 788
diff changeset
51
989b921361d0 test2 added for playback test, testreanmed to test1 to make Atmosfear happy...
arpi_esp
parents: 788
diff changeset
52 test2: libMP3.a test2.c
1461
5a748a93b7b4 Fixed Makefile for test programs.
atmos4
parents: 1393
diff changeset
53 $(CC) $(CFLAGS) test2.c ../libvo/aclib.c -o test2 -I.. -L. -lMP3 -lm
788
214ea3f02d13 test.c added for benchmarking
arpi_esp
parents: 26
diff changeset
54
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
55 all: libMP3.a
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
56
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
57 clean:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
58 rm -f *~ *.o *.a
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
59
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
60 distclean:
26
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
61 rm -f *~ *.o *.a Makefile.bak .depend
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
62
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
63 dep: depend
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
64
1010
6d3a6d42c831 dependency stuff fixed
arpi_esp
parents: 866
diff changeset
65 depend:
866
91087aaea5c7 using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents: 826
diff changeset
66 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
67
26
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
68 #
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
69 # include dependency files if they exist
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
70 #
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
71 ifneq ($(wildcard .depend),)
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
72 include .depend
8ee4acebff58 New dependency system
arpi_esp
parents: 1
diff changeset
73 endif