]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
lavu: add av_ctz() for trailing zero bit count
[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           mathematics.h                                                 \
28           md5.h                                                         \
29           mem.h                                                         \
30           dict.h                                                        \
31           old_pix_fmts.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 HEADERS-$(CONFIG_LZO)                   += lzo.h
45
46 ARCH_HEADERS = bswap.h                                                  \
47                intmath.h                                                \
48                intreadwrite.h                                           \
49                timer.h                                                  \
50
51 BUILT_HEADERS = avconfig.h
52
53 OBJS = adler32.o                                                        \
54        aes.o                                                            \
55        audio_fifo.o                                                     \
56        audioconvert.o                                                   \
57        avstring.o                                                       \
58        base64.o                                                         \
59        blowfish.o                                                       \
60        cpu.o                                                            \
61        crc.o                                                            \
62        des.o                                                            \
63        error.o                                                          \
64        eval.o                                                           \
65        fifo.o                                                           \
66        file.o                                                           \
67        float_dsp.o                                                      \
68        imgutils.o                                                       \
69        intfloat_readwrite.o                                             \
70        intmath.o                                                        \
71        lfg.o                                                            \
72        lls.o                                                            \
73        log.o                                                            \
74        log2_tab.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-$(CONFIG_LZO)                      += lzo.o
93
94 OBJS += $(COMPAT_OBJS:%=../compat/%)
95
96 SKIPHEADERS          = old_pix_fmts.h
97
98 TESTPROGS = adler32                                                     \
99             aes                                                         \
100             avstring                                                    \
101             base64                                                      \
102             blowfish                                                    \
103             cpu                                                         \
104             crc                                                         \
105             des                                                         \
106             eval                                                        \
107             fifo                                                        \
108             lfg                                                         \
109             lls                                                         \
110             md5                                                         \
111             opt                                                         \
112             parseutils                                                  \
113             sha                                                         \
114             tree                                                        \
115             xtea                                                        \