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