]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
log: Support for 256color terminals
[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           buffer.h                                                      \
15           channel_layout.h                                              \
16           common.h                                                      \
17           cpu.h                                                         \
18           crc.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           old_pix_fmts.h                                                \
37           opt.h                                                         \
38           parseutils.h                                                  \
39           pixdesc.h                                                     \
40           pixfmt.h                                                      \
41           random_seed.h                                                 \
42           replaygain.h                                                  \
43           rational.h                                                    \
44           samplefmt.h                                                   \
45           sha.h                                                         \
46           stereo3d.h                                                    \
47           time.h                                                        \
48           version.h                                                     \
49           xtea.h                                                        \
50
51 HEADERS-$(CONFIG_LZO)                   += lzo.h
52
53 ARCH_HEADERS = bswap.h                                                  \
54                intmath.h                                                \
55                intreadwrite.h                                           \
56                timer.h                                                  \
57
58 BUILT_HEADERS = avconfig.h
59
60 OBJS = adler32.o                                                        \
61        aes.o                                                            \
62        atomic.o                                                         \
63        audio_fifo.o                                                     \
64        avstring.o                                                       \
65        base64.o                                                         \
66        blowfish.o                                                       \
67        buffer.o                                                         \
68        channel_layout.o                                                 \
69        cpu.o                                                            \
70        crc.o                                                            \
71        des.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          = old_pix_fmts.h
110
111 SKIPHEADERS-$(HAVE_ATOMICS_GCC)        += atomic_gcc.h
112 SKIPHEADERS-$(HAVE_ATOMICS_SUNCC)      += atomic_suncc.h
113 SKIPHEADERS-$(HAVE_ATOMICS_WIN32)      += atomic_win32.h
114
115 TESTPROGS = adler32                                                     \
116             aes                                                         \
117             atomic                                                      \
118             avstring                                                    \
119             base64                                                      \
120             blowfish                                                    \
121             cpu                                                         \
122             crc                                                         \
123             des                                                         \
124             eval                                                        \
125             fifo                                                        \
126             float_dsp                                                   \
127             hmac                                                        \
128             lfg                                                         \
129             lls                                                         \
130             md5                                                         \
131             opt                                                         \
132             parseutils                                                  \
133             sha                                                         \
134             tree                                                        \
135             xtea                                                        \