annotate Makefile @ 15:076bcac8d059 libavcodec

added cpuid.s
author glantau
date Mon, 30 Jul 2001 23:50:04 +0000
parents 0dd0178a24c5
children b69fe46fd708
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
1 include ../config.mak
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
2
9
0dd0178a24c5 added mpegvideo_mmx.c - added HAVE_AV_CONFIG_H
glantau
parents: 8
diff changeset
3 CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
4 LDFLAGS= -g
986e461dc072 Initial revision
glantau
parents:
diff changeset
5
986e461dc072 Initial revision
glantau
parents:
diff changeset
6 OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \
986e461dc072 Initial revision
glantau
parents:
diff changeset
7 mpegaudio.o ac3enc.o mjpegenc.o resample.o dsputil.o \
986e461dc072 Initial revision
glantau
parents:
diff changeset
8 motion_est.o imgconvert.o imgresample.o msmpeg4.o \
986e461dc072 Initial revision
glantau
parents:
diff changeset
9 mpeg12.o h263dec.o rv10.o
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
10 ASM_OBJS=
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
11
986e461dc072 Initial revision
glantau
parents:
diff changeset
12 # currently using libac3 for ac3 decoding
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
13 ifeq ($(CONFIG_AC3),yes)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
14 OBJS+= ac3dec.o \
986e461dc072 Initial revision
glantau
parents:
diff changeset
15 libac3/bit_allocate.o libac3/bitstream.o libac3/downmix.o \
986e461dc072 Initial revision
glantau
parents:
diff changeset
16 libac3/imdct.o libac3/parse.o
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
17 endif
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
18
986e461dc072 Initial revision
glantau
parents:
diff changeset
19 # currently using mpglib for mpeg audio decoding
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
20 ifeq ($(CONFIG_MPGLIB),yes)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
21 OBJS+= mpegaudiodec.o \
986e461dc072 Initial revision
glantau
parents:
diff changeset
22 mpglib/layer1.o mpglib/layer2.o mpglib/layer3.o \
986e461dc072 Initial revision
glantau
parents:
diff changeset
23 mpglib/dct64_i386.o mpglib/decode_i386.o mpglib/tabinit.o
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
24 endif
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
25
986e461dc072 Initial revision
glantau
parents:
diff changeset
26 # i386 mmx specific stuff
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
27 ifeq ($(TARGET_MMX),yes)
15
076bcac8d059 added cpuid.s
glantau
parents: 9
diff changeset
28 ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.o i386/cpuid.o
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
29 OBJS += i386/fdctdata.o i386/cputest.o \
9
0dd0178a24c5 added mpegvideo_mmx.c - added HAVE_AV_CONFIG_H
glantau
parents: 8
diff changeset
30 i386/dsputil_mmx.o i386/mpegvideo_mmx.o
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
31 endif
986e461dc072 Initial revision
glantau
parents:
diff changeset
32
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
33 SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
34
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
35 LIB= libavcodec.a
986e461dc072 Initial revision
glantau
parents:
diff changeset
36 TESTS= imgresample-test dct-test
986e461dc072 Initial revision
glantau
parents:
diff changeset
37
986e461dc072 Initial revision
glantau
parents:
diff changeset
38 all: $(LIB) apiexample
986e461dc072 Initial revision
glantau
parents:
diff changeset
39
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
40 $(LIB): $(OBJS) $(ASM_OBJS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
41 rm -f $@
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
42 $(AR) rcs $@ $(OBJS) $(ASM_OBJS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
43
986e461dc072 Initial revision
glantau
parents:
diff changeset
44 dsputil.o: dsputil.c dsputil.h
986e461dc072 Initial revision
glantau
parents:
diff changeset
45
986e461dc072 Initial revision
glantau
parents:
diff changeset
46 %.o: %.c
986e461dc072 Initial revision
glantau
parents:
diff changeset
47 $(CC) $(CFLAGS) -c -o $@ $<
986e461dc072 Initial revision
glantau
parents:
diff changeset
48
15
076bcac8d059 added cpuid.s
glantau
parents: 9
diff changeset
49 i386/cpuid.o: i386/cpuid.s
076bcac8d059 added cpuid.s
glantau
parents: 9
diff changeset
50 $(CC) -c -o $@ $<
076bcac8d059 added cpuid.s
glantau
parents: 9
diff changeset
51
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
52 %.o: %.s
986e461dc072 Initial revision
glantau
parents:
diff changeset
53 nasm -f elf -o $@ $<
986e461dc072 Initial revision
glantau
parents:
diff changeset
54
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
55 # depend only used by mplayer now
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
56 dep: depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
57
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
58 depend:
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
59 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
60
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
61 clean:
986e461dc072 Initial revision
glantau
parents:
diff changeset
62 rm -f *.o *~ *.a i386/*.o i386/*~ \
986e461dc072 Initial revision
glantau
parents:
diff changeset
63 libac3/*.o libac3/*~ \
986e461dc072 Initial revision
glantau
parents:
diff changeset
64 mpglib/*.o mpglib/*~ \
986e461dc072 Initial revision
glantau
parents:
diff changeset
65 apiexample $(TESTS)
986e461dc072 Initial revision
glantau
parents:
diff changeset
66
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
67 distclean: clean
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
68 rm -f Makefile.bak .depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
69
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
70 # api example program
986e461dc072 Initial revision
glantau
parents:
diff changeset
71 apiexample: apiexample.c $(LIB)
986e461dc072 Initial revision
glantau
parents:
diff changeset
72 $(CC) $(CFLAGS) -o $@ $< $(LIB) -lm
986e461dc072 Initial revision
glantau
parents:
diff changeset
73
986e461dc072 Initial revision
glantau
parents:
diff changeset
74 # testing progs
986e461dc072 Initial revision
glantau
parents:
diff changeset
75
986e461dc072 Initial revision
glantau
parents:
diff changeset
76 imgresample-test: imgresample.c
986e461dc072 Initial revision
glantau
parents:
diff changeset
77 $(CC) $(CFLAGS) -DTEST -o $@ $^
986e461dc072 Initial revision
glantau
parents:
diff changeset
78
986e461dc072 Initial revision
glantau
parents:
diff changeset
79 dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o i386/fdctdata.o fdctref.o
986e461dc072 Initial revision
glantau
parents:
diff changeset
80 $(CC) -o $@ $^
3
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
81
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
82 #
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
83 # include dependency files if they exist
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
84 #
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
85 ifneq ($(wildcard .depend),)
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
86 include .depend
1bdbd869c1f0 added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents: 2
diff changeset
87 endif