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