]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
avcodec/shorten: clear bitstream buffer
[ffmpeg] / libavutil / Makefile
1 include $(SUBDIR)../config.mak
2
3 NAME = avutil
4
5 HEADERS = adler32.h                                                     \
6           aes.h                                                         \
7           attributes.h                                                  \
8           audio_fifo.h                                                  \
9           audioconvert.h                                                \
10           avassert.h                                                    \
11           avstring.h                                                    \
12           avutil.h                                                      \
13           base64.h                                                      \
14           blowfish.h                                                    \
15           bprint.h                                                      \
16           bswap.h                                                       \
17           buffer.h                                                      \
18           channel_layout.h                                              \
19           common.h                                                      \
20           cpu.h                                                         \
21           crc.h                                                         \
22           error.h                                                       \
23           eval.h                                                        \
24           fifo.h                                                        \
25           file.h                                                        \
26           frame.h                                                       \
27           hmac.h                                                        \
28           imgutils.h                                                    \
29           intfloat.h                                                    \
30           intfloat_readwrite.h                                          \
31           intreadwrite.h                                                \
32           lfg.h                                                         \
33           log.h                                                         \
34           mathematics.h                                                 \
35           md5.h                                                         \
36           mem.h                                                         \
37           murmur3.h                                                     \
38           dict.h                                                        \
39           old_pix_fmts.h                                                \
40           opt.h                                                         \
41           parseutils.h                                                  \
42           pixdesc.h                                                     \
43           pixfmt.h                                                      \
44           random_seed.h                                                 \
45           rational.h                                                    \
46           ripemd.h                                                      \
47           samplefmt.h                                                   \
48           sha.h                                                         \
49           sha512.h                                                      \
50           stereo3d.h                                                    \
51           time.h                                                        \
52           timecode.h                                                    \
53           timestamp.h                                                   \
54           version.h                                                     \
55           xtea.h                                                        \
56
57 HEADERS-$(CONFIG_LZO)                   += lzo.h
58
59 HEADERS-$(CONFIG_OPENCL)                += opencl.h
60
61 ARCH_HEADERS = bswap.h                                                  \
62                intmath.h                                                \
63                intreadwrite.h                                           \
64                timer.h                                                  \
65
66 BUILT_HEADERS = avconfig.h                                              \
67                 ffversion.h
68
69 OBJS = adler32.o                                                        \
70        aes.o                                                            \
71        atomic.o                                                         \
72        audio_fifo.o                                                     \
73        avstring.o                                                       \
74        base64.o                                                         \
75        blowfish.o                                                       \
76        bprint.o                                                         \
77        buffer.o                                                         \
78        channel_layout.o                                                 \
79        cpu.o                                                            \
80        crc.o                                                            \
81        des.o                                                            \
82        error.o                                                          \
83        eval.o                                                           \
84        fifo.o                                                           \
85        file.o                                                           \
86        file_open.o                                                      \
87        float_dsp.o                                                      \
88        frame.o                                                          \
89        hash.o                                                           \
90        hmac.o                                                           \
91        imgutils.o                                                       \
92        intfloat_readwrite.o                                             \
93        intmath.o                                                        \
94        lfg.o                                                            \
95        lls1.o                                                           \
96        lls2.o                                                           \
97        log.o                                                            \
98        log2_tab.o                                                       \
99        mathematics.o                                                    \
100        md5.o                                                            \
101        mem.o                                                            \
102        murmur3.o                                                        \
103        dict.o                                                           \
104        opt.o                                                            \
105        parseutils.o                                                     \
106        pixdesc.o                                                        \
107        random_seed.o                                                    \
108        rational.o                                                       \
109        rc4.o                                                            \
110        ripemd.o                                                         \
111        samplefmt.o                                                      \
112        sha.o                                                            \
113        sha512.o                                                         \
114        stereo3d.o                                                       \
115        time.o                                                           \
116        timecode.o                                                       \
117        tree.o                                                           \
118        utils.o                                                          \
119        xga_font_data.o                                                  \
120        xtea.o                                                           \
121
122 OBJS-$(CONFIG_LZO)                      += lzo.o
123 OBJS-$(CONFIG_OPENCL)                   += opencl.o opencl_internal.o
124
125 OBJS += $(COMPAT_OBJS:%=../compat/%)
126
127 # Windows resource file
128 SLIBOBJS-$(HAVE_GNU_WINDRES)            += avutilres.o
129
130 SKIPHEADERS          = old_pix_fmts.h
131
132 SKIPHEADERS-$(HAVE_ATOMICS_GCC)        += atomic_gcc.h
133 SKIPHEADERS-$(HAVE_ATOMICS_SUNCC)      += atomic_suncc.h
134 SKIPHEADERS-$(HAVE_ATOMICS_WIN32)      += atomic_win32.h
135 SKIPHEADERS-$(CONFIG_OPENCL)           += opencl.h
136
137 TESTPROGS = adler32                                                     \
138             aes                                                         \
139             atomic                                                      \
140             avstring                                                    \
141             base64                                                      \
142             blowfish                                                    \
143             bprint                                                      \
144             cpu                                                         \
145             crc                                                         \
146             des                                                         \
147             error                                                       \
148             eval                                                        \
149             file                                                        \
150             fifo                                                        \
151             hmac                                                        \
152             lfg                                                         \
153             lls1                                                        \
154             lls2                                                        \
155             md5                                                         \
156             murmur3                                                     \
157             opt                                                         \
158             pca                                                         \
159             parseutils                                                  \
160             random_seed                                                 \
161             rational                                                    \
162             ripemd                                                      \
163             sha                                                         \
164             sha512                                                      \
165             tree                                                        \
166             utf8                                                        \
167             xtea                                                        \
168
169 TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
170
171 TOOLS = crypto_bench ffhash ffeval ffescape
172
173 tools/crypto_bench$(EXESUF): ELIBS += $(if $(VERSUS),$(subst +, -l,+$(VERSUS)),)
174 tools/crypto_bench$(EXESUF): CFLAGS += -DUSE_EXT_LIBS=0$(if $(VERSUS),$(subst +,+USE_,+$(VERSUS)),)
175
176 $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2