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