summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/libmpeg3/audio/Makefile
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/libmpeg3/audio/Makefile') (more/less context) (show whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmpeg3/audio/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/core/multimedia/opieplayer/libmpeg3/audio/Makefile b/core/multimedia/opieplayer/libmpeg3/audio/Makefile
new file mode 100644
index 0000000..eaa0e0b
--- a/dev/null
+++ b/core/multimedia/opieplayer/libmpeg3/audio/Makefile
@@ -0,0 +1,35 @@
1include ../global_config
2export CFLAGS
3export CFLAGS_lessopt
4
5OBJS = \
6 ac3.o \
7 bit_allocation.o \
8 dct.o \
9 exponents.o \
10 header.o \
11 layer2.o \
12 layer3.o \
13 mantissa.o \
14 mpeg3audio.o \
15 pcm.o \
16 synthesizers.o \
17 tables.o
18
19all: $(OBJS)
20
21dct.o: dct.c
22 $(CC) -c `./c_flags dct.c` -o $@ $<
23
24synthesizers.o: synthesizers.c
25 $(CC) -c `./c_flags synthesizers.c` -o $@ $<
26
27
28.c.o:
29 $(CC) -c `./c_flags` -o $@ $<
30
31.s.o:
32 $(CC) -f elf $*.s
33
34clean:
35 rm -f *.o