]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
lavu: Drop deprecated audioconvert.h header
[ffmpeg] / libavutil / Makefile
1 NAME = avutil
2
3 HEADERS = adler32.h                                                     \
4           aes.h                                                         \
5           attributes.h                                                  \
6           audio_fifo.h                                                  \
7           avassert.h                                                    \
8           avstring.h                                                    \
9           avutil.h                                                      \
10           base64.h                                                      \
11           blowfish.h                                                    \
12           bswap.h                                                       \
13           buffer.h                                                      \
14           channel_layout.h                                              \
15           common.h                                                      \
16           cpu.h                                                         \
17           crc.h                                                         \
18           display.h                                                     \
19           downmix_info.h                                                \
20           error.h                                                       \
21           eval.h                                                        \
22           fifo.h                                                        \
23           file.h                                                        \
24           frame.h                                                       \
25           hmac.h                                                        \
26           imgutils.h                                                    \
27           intfloat.h                                                    \
28           intreadwrite.h                                                \
29           lfg.h                                                         \
30           log.h                                                         \
31           macros.h                                                      \
32           mathematics.h                                                 \
33           md5.h                                                         \
34           mem.h                                                         \
35           dict.h                                                        \
36           opt.h                                                         \
37           parseutils.h                                                  \
38           pixdesc.h                                                     \
39           pixfmt.h                                                      \
40           random_seed.h                                                 \
41           replaygain.h                                                  \
42           rational.h                                                    \
43           samplefmt.h                                                   \
44           sha.h                                                         \
45           stereo3d.h                                                    \
46           time.h                                                        \
47           version.h                                                     \
48           xtea.h                                                        \
49
50 HEADERS-$(CONFIG_LZO)                   += lzo.h
51
52 ARCH_HEADERS = bswap.h                                                  \
53                intmath.h                                                \
54                intreadwrite.h                                           \
55                timer.h                                                  \
56
57 BUILT_HEADERS = avconfig.h
58
59 OBJS = adler32.o                                                        \
60        aes.o                                                            \
61        atomic.o                                                         \
62        audio_fifo.o                                                     \
63        avstring.o                                                       \
64        base64.o                                                         \
65        blowfish.o                                                       \
66        buffer.o                                                         \
67        channel_layout.o                                                 \
68        cpu.o                                                            \
69        crc.o                                                            \
70        des.o                                                            \
71        display.o                                                        \
72        downmix_info.o                                                   \
73        error.o                                                          \
74        eval.o                                                           \
75        fifo.o                                                           \
76        file.o                                                           \
77        file_open.o                                                      \
78        float_dsp.o                                                      \
79        frame.o                                                          \
80        hmac.o                                                           \
81        imgutils.o                                                       \
82        intmath.o                                                        \
83        lfg.o                                                            \
84        lls.o                                                            \
85        log.o                                                            \
86        log2_tab.o                                                       \
87        mathematics.o                                                    \
88        md5.o                                                            \
89        mem.o                                                            \
90        dict.o                                                           \
91        opt.o                                                            \
92        parseutils.o                                                     \
93        pixdesc.o                                                        \
94        random_seed.o                                                    \
95        rational.o                                                       \
96        rc4.o                                                            \
97        samplefmt.o                                                      \
98        sha.o                                                            \
99        stereo3d.o                                                       \
100        time.o                                                           \
101        tree.o                                                           \
102        utils.o                                                          \
103        xtea.o                                                           \
104
105 OBJS-$(CONFIG_LZO)                      += lzo.o
106
107 OBJS += $(COMPAT_OBJS:%=../compat/%)
108
109 SKIPHEADERS-$(HAVE_ATOMICS_GCC)        += atomic_gcc.h
110 SKIPHEADERS-$(HAVE_ATOMICS_SUNCC)      += atomic_suncc.h
111 SKIPHEADERS-$(HAVE_ATOMICS_WIN32)      += atomic_win32.h
112
113 TESTPROGS = adler32                                                     \
114             aes                                                         \
115             atomic                                                      \
116             avstring                                                    \
117             base64                                                      \
118             blowfish                                                    \
119             cpu                                                         \
120             crc                                                         \
121             des                                                         \
122             eval                                                        \
123             fifo                                                        \
124             float_dsp                                                   \
125             hmac                                                        \
126             lfg                                                         \
127             lls                                                         \
128             md5                                                         \
129             opt                                                         \
130             parseutils                                                  \
131             sha                                                         \
132             tree                                                        \
133             xtea                                                        \