]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
56ccd04dff81b2c52a51565e082a5e224162fd0f
[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           bswap.h                                                       \
13           common.h                                                      \
14           cpu.h                                                         \
15           crc.h                                                         \
16           error.h                                                       \
17           eval.h                                                        \
18           fifo.h                                                        \
19           file.h                                                        \
20           imgutils.h                                                    \
21           intfloat.h                                                    \
22           intfloat_readwrite.h                                          \
23           intreadwrite.h                                                \
24           lfg.h                                                         \
25           log.h                                                         \
26           lzo.h                                                         \
27           mathematics.h                                                 \
28           md5.h                                                         \
29           mem.h                                                         \
30           dict.h                                                        \
31           opt.h                                                         \
32           parseutils.h                                                  \
33           pixdesc.h                                                     \
34           pixfmt.h                                                      \
35           random_seed.h                                                 \
36           rational.h                                                    \
37           samplefmt.h                                                   \
38           sha.h                                                         \
39
40 ARCH_HEADERS = bswap.h                                                  \
41                intmath.h                                                \
42                intreadwrite.h                                           \
43                timer.h                                                  \
44
45 BUILT_HEADERS = avconfig.h
46
47 OBJS = adler32.o                                                        \
48        aes.o                                                            \
49        audio_fifo.o                                                     \
50        audioconvert.o                                                   \
51        avstring.o                                                       \
52        base64.o                                                         \
53        cpu.o                                                            \
54        crc.o                                                            \
55        des.o                                                            \
56        error.o                                                          \
57        eval.o                                                           \
58        fifo.o                                                           \
59        file.o                                                           \
60        float_dsp.o                                                      \
61        imgutils.o                                                       \
62        intfloat_readwrite.o                                             \
63        inverse.o                                                        \
64        lfg.o                                                            \
65        lls.o                                                            \
66        log.o                                                            \
67        lzo.o                                                            \
68        mathematics.o                                                    \
69        md5.o                                                            \
70        mem.o                                                            \
71        dict.o                                                           \
72        opt.o                                                            \
73        parseutils.o                                                     \
74        pixdesc.o                                                        \
75        random_seed.o                                                    \
76        rational.o                                                       \
77        rc4.o                                                            \
78        samplefmt.o                                                      \
79        sha.o                                                            \
80        tree.o                                                           \
81        utils.o                                                          \
82
83 TESTPROGS = adler32                                                     \
84             aes                                                         \
85             avstring                                                    \
86             base64                                                      \
87             cpu                                                         \
88             crc                                                         \
89             des                                                         \
90             eval                                                        \
91             fifo                                                        \
92             lfg                                                         \
93             lls                                                         \
94             md5                                                         \
95             opt                                                         \
96             parseutils                                                  \
97             sha                                                         \
98             tree                                                        \