]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
get_buffer(): do not initialize the data.
[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           channel_layout.h                                              \
15           common.h                                                      \
16           cpu.h                                                         \
17           crc.h                                                         \
18           error.h                                                       \
19           eval.h                                                        \
20           fifo.h                                                        \
21           file.h                                                        \
22           hmac.h                                                        \
23           imgutils.h                                                    \
24           intfloat.h                                                    \
25           intfloat_readwrite.h                                          \
26           intreadwrite.h                                                \
27           lfg.h                                                         \
28           log.h                                                         \
29           mathematics.h                                                 \
30           md5.h                                                         \
31           mem.h                                                         \
32           dict.h                                                        \
33           old_pix_fmts.h                                                \
34           opt.h                                                         \
35           parseutils.h                                                  \
36           pixdesc.h                                                     \
37           pixfmt.h                                                      \
38           random_seed.h                                                 \
39           rational.h                                                    \
40           samplefmt.h                                                   \
41           sha.h                                                         \
42           time.h                                                        \
43           version.h                                                     \
44           xtea.h                                                        \
45
46 HEADERS-$(CONFIG_LZO)                   += lzo.h
47
48 ARCH_HEADERS = bswap.h                                                  \
49                intmath.h                                                \
50                intreadwrite.h                                           \
51                timer.h                                                  \
52
53 BUILT_HEADERS = avconfig.h
54
55 OBJS = adler32.o                                                        \
56        aes.o                                                            \
57        audio_fifo.o                                                     \
58        avstring.o                                                       \
59        base64.o                                                         \
60        blowfish.o                                                       \
61        channel_layout.o                                                 \
62        cpu.o                                                            \
63        crc.o                                                            \
64        des.o                                                            \
65        error.o                                                          \
66        eval.o                                                           \
67        fifo.o                                                           \
68        file.o                                                           \
69        float_dsp.o                                                      \
70        hmac.o                                                           \
71        imgutils.o                                                       \
72        intfloat_readwrite.o                                             \
73        intmath.o                                                        \
74        lfg.o                                                            \
75        lls.o                                                            \
76        log.o                                                            \
77        log2_tab.o                                                       \
78        mathematics.o                                                    \
79        md5.o                                                            \
80        mem.o                                                            \
81        dict.o                                                           \
82        opt.o                                                            \
83        parseutils.o                                                     \
84        pixdesc.o                                                        \
85        random_seed.o                                                    \
86        rational.o                                                       \
87        rc4.o                                                            \
88        samplefmt.o                                                      \
89        sha.o                                                            \
90        time.o                                                           \
91        tree.o                                                           \
92        utils.o                                                          \
93        xtea.o                                                           \
94
95 OBJS-$(CONFIG_LZO)                      += lzo.o
96
97 OBJS += $(COMPAT_OBJS:%=../compat/%)
98
99 SKIPHEADERS          = old_pix_fmts.h
100
101 TESTPROGS = adler32                                                     \
102             aes                                                         \
103             avstring                                                    \
104             base64                                                      \
105             blowfish                                                    \
106             cpu                                                         \
107             crc                                                         \
108             des                                                         \
109             eval                                                        \
110             fifo                                                        \
111             hmac                                                        \
112             lfg                                                         \
113             lls                                                         \
114             md5                                                         \
115             opt                                                         \
116             parseutils                                                  \
117             sha                                                         \
118             tree                                                        \
119             xtea                                                        \