]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
Add XTEA encryption support in libavutil
[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           opt.h                                                         \
33           parseutils.h                                                  \
34           pixdesc.h                                                     \
35           pixfmt.h                                                      \
36           random_seed.h                                                 \
37           rational.h                                                    \
38           samplefmt.h                                                   \
39           sha.h                                                         \
40           time.h                                                        \
41           xtea.h                                                        \
42
43 ARCH_HEADERS = bswap.h                                                  \
44                intmath.h                                                \
45                intreadwrite.h                                           \
46                timer.h                                                  \
47
48 BUILT_HEADERS = avconfig.h
49
50 OBJS = adler32.o                                                        \
51        aes.o                                                            \
52        audio_fifo.o                                                     \
53        audioconvert.o                                                   \
54        avstring.o                                                       \
55        base64.o                                                         \
56        blowfish.o                                                       \
57        cpu.o                                                            \
58        crc.o                                                            \
59        des.o                                                            \
60        error.o                                                          \
61        eval.o                                                           \
62        fifo.o                                                           \
63        file.o                                                           \
64        float_dsp.o                                                      \
65        imgutils.o                                                       \
66        intfloat_readwrite.o                                             \
67        inverse.o                                                        \
68        lfg.o                                                            \
69        lls.o                                                            \
70        log.o                                                            \
71        lzo.o                                                            \
72        mathematics.o                                                    \
73        md5.o                                                            \
74        mem.o                                                            \
75        dict.o                                                           \
76        opt.o                                                            \
77        parseutils.o                                                     \
78        pixdesc.o                                                        \
79        random_seed.o                                                    \
80        rational.o                                                       \
81        rc4.o                                                            \
82        samplefmt.o                                                      \
83        sha.o                                                            \
84        time.o                                                           \
85        tree.o                                                           \
86        utils.o                                                          \
87        xtea.o                                                           \
88
89 TESTPROGS = adler32                                                     \
90             aes                                                         \
91             avstring                                                    \
92             base64                                                      \
93             blowfish                                                    \
94             cpu                                                         \
95             crc                                                         \
96             des                                                         \
97             eval                                                        \
98             fifo                                                        \
99             lfg                                                         \
100             lls                                                         \
101             md5                                                         \
102             opt                                                         \
103             parseutils                                                  \
104             sha                                                         \
105             tree                                                        \
106             xtea                                                        \