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