]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
Revert "avutil: Add a copy of ff_sqrt_tab back into avutil to restore ABI compatibility"
[ffmpeg] / libavutil / Makefile
1 NAME = avutil
2
3 HEADERS = adler32.h                                                     \
4           aes.h                                                         \
5           attributes.h                                                  \
6           audio_fifo.h                                                  \
7           audioconvert.h                                                \
8           avassert.h                                                    \
9           avstring.h                                                    \
10           avutil.h                                                      \
11           base64.h                                                      \
12           blowfish.h                                                    \
13           bswap.h                                                       \
14           common.h                                                      \
15           cpu.h                                                         \
16           crc.h                                                         \
17           error.h                                                       \
18           eval.h                                                        \
19           fifo.h                                                        \
20           file.h                                                        \
21           imgutils.h                                                    \
22           intfloat.h                                                    \
23           intfloat_readwrite.h                                          \
24           intreadwrite.h                                                \
25           lfg.h                                                         \
26           log.h                                                         \
27           lzo.h                                                         \
28           mathematics.h                                                 \
29           md5.h                                                         \
30           mem.h                                                         \
31           dict.h                                                        \
32           old_pix_fmts.h                                                \
33           opt.h                                                         \
34           parseutils.h                                                  \
35           pixdesc.h                                                     \
36           pixfmt.h                                                      \
37           random_seed.h                                                 \
38           rational.h                                                    \
39           samplefmt.h                                                   \
40           sha.h                                                         \
41           time.h                                                        \
42           version.h                                                     \
43           xtea.h                                                        \
44
45 ARCH_HEADERS = bswap.h                                                  \
46                intmath.h                                                \
47                intreadwrite.h                                           \
48                timer.h                                                  \
49
50 BUILT_HEADERS = avconfig.h
51
52 OBJS = adler32.o                                                        \
53        aes.o                                                            \
54        audio_fifo.o                                                     \
55        audioconvert.o                                                   \
56        avstring.o                                                       \
57        base64.o                                                         \
58        blowfish.o                                                       \
59        cpu.o                                                            \
60        crc.o                                                            \
61        des.o                                                            \
62        error.o                                                          \
63        eval.o                                                           \
64        fifo.o                                                           \
65        file.o                                                           \
66        float_dsp.o                                                      \
67        imgutils.o                                                       \
68        intfloat_readwrite.o                                             \
69        lfg.o                                                            \
70        lls.o                                                            \
71        log.o                                                            \
72        log2.o                                                           \
73        log2_tab.o                                                       \
74        lzo.o                                                            \
75        mathematics.o                                                    \
76        md5.o                                                            \
77        mem.o                                                            \
78        dict.o                                                           \
79        opt.o                                                            \
80        parseutils.o                                                     \
81        pixdesc.o                                                        \
82        random_seed.o                                                    \
83        rational.o                                                       \
84        rc4.o                                                            \
85        samplefmt.o                                                      \
86        sha.o                                                            \
87        time.o                                                           \
88        tree.o                                                           \
89        utils.o                                                          \
90        xtea.o                                                           \
91
92 OBJS += $(COMPAT_OBJS:%=../compat/%)
93
94 SKIPHEADERS          = old_pix_fmts.h
95
96 TESTPROGS = adler32                                                     \
97             aes                                                         \
98             avstring                                                    \
99             base64                                                      \
100             blowfish                                                    \
101             cpu                                                         \
102             crc                                                         \
103             des                                                         \
104             eval                                                        \
105             fifo                                                        \
106             lfg                                                         \
107             lls                                                         \
108             md5                                                         \
109             opt                                                         \
110             parseutils                                                  \
111             sha                                                         \
112             tree                                                        \
113             xtea                                                        \