annotate Makefile @ 23:1e131bc21101 libavcodec

added MJPEG decoder, renamed mjpegenc.c to mjpeg.c
author glantau
date Mon, 06 Aug 2001 00:44:48 +0000
parents c31fb57d17a6
children a524484f9adf
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 \
23
1e131bc21101 added MJPEG decoder, renamed mjpegenc.c to mjpeg.c
glantau
parents: 22
diff changeset
7 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \
0
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)
22
c31fb57d17a6 Suppressing external gas stuff to improve portability to Win32
nickols_k
parents: 17
diff changeset
28 ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.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
17
b69fe46fd708 Adding fastmemcpy stuff to speedup mplayer project
nickols_k
parents: 15
diff changeset
38 all: $(LIB)
b69fe46fd708 Adding fastmemcpy stuff to speedup mplayer project
nickols_k
parents: 15
diff changeset
39 tests: apiexample $(TESTS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
40
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
41 $(LIB): $(OBJS) $(ASM_OBJS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
42 rm -f $@
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
43 $(AR) rcs $@ $(OBJS) $(ASM_OBJS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
44
986e461dc072 Initial revision
glantau
parents:
diff changeset
45 dsputil.o: dsputil.c dsputil.h
986e461dc072 Initial revision
glantau
parents:
diff changeset
46
986e461dc072 Initial revision
glantau
parents:
diff changeset
47 %.o: %.c
986e461dc072 Initial revision
glantau
parents:
diff changeset
48 $(CC) $(CFLAGS) -c -o $@ $<
986e461dc072 Initial revision
glantau
parents:
diff changeset
49
986e461dc072 Initial revision
glantau
parents:
diff changeset
50 %.o: %.s
986e461dc072 Initial revision
glantau
parents:
diff changeset
51 nasm -f elf -o $@ $<
986e461dc072 Initial revision
glantau
parents:
diff changeset
52
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
53 # depend only used by mplayer now
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
54 dep: depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
55
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
56 depend:
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
57 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
58
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
59 clean:
986e461dc072 Initial revision
glantau
parents:
diff changeset
60 rm -f *.o *~ *.a i386/*.o i386/*~ \
986e461dc072 Initial revision
glantau
parents:
diff changeset
61 libac3/*.o libac3/*~ \
986e461dc072 Initial revision
glantau
parents:
diff changeset
62 mpglib/*.o mpglib/*~ \
986e461dc072 Initial revision
glantau
parents:
diff changeset
63 apiexample $(TESTS)
986e461dc072 Initial revision
glantau
parents:
diff changeset
64
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
65 distclean: clean
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
66 rm -f Makefile.bak .depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
67
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
68 # api example program
986e461dc072 Initial revision
glantau
parents:
diff changeset
69 apiexample: apiexample.c $(LIB)
986e461dc072 Initial revision
glantau
parents:
diff changeset
70 $(CC) $(CFLAGS) -o $@ $< $(LIB) -lm
986e461dc072 Initial revision
glantau
parents:
diff changeset
71
986e461dc072 Initial revision
glantau
parents:
diff changeset
72 # testing progs
986e461dc072 Initial revision
glantau
parents:
diff changeset
73
986e461dc072 Initial revision
glantau
parents:
diff changeset
74 imgresample-test: imgresample.c
986e461dc072 Initial revision
glantau
parents:
diff changeset
75 $(CC) $(CFLAGS) -DTEST -o $@ $^
986e461dc072 Initial revision
glantau
parents:
diff changeset
76
986e461dc072 Initial revision
glantau
parents:
diff changeset
77 dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o i386/fdctdata.o fdctref.o
986e461dc072 Initial revision
glantau
parents:
diff changeset
78 $(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
79
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
80 #
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 # 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
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 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
84 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
85 endif