]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
jpeg2000dec: Check bpno in decode_cblk()
[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           samplefmt.h                                                   \
47           sha.h                                                         \
48           sha512.h                                                      \
49           time.h                                                        \
50           timecode.h                                                    \
51           timestamp.h                                                   \
52           version.h                                                     \
53           xtea.h                                                        \
54
55 HEADERS-$(CONFIG_LZO)                   += lzo.h
56
57 HEADERS-$(CONFIG_OPENCL)                += opencl.h
58
59 ARCH_HEADERS = bswap.h                                                  \
60                intmath.h                                                \
61                intreadwrite.h                                           \
62                timer.h                                                  \
63
64 BUILT_HEADERS = avconfig.h
65
66 OBJS = adler32.o                                                        \
67        aes.o                                                            \
68        atomic.o                                                         \
69        audio_fifo.o                                                     \
70        avstring.o                                                       \
71        base64.o                                                         \
72        blowfish.o                                                       \
73        bprint.o                                                         \
74        buffer.o                                                         \
75        channel_layout.o                                                 \
76        cpu.o                                                            \
77        crc.o                                                            \
78        des.o                                                            \
79        error.o                                                          \
80        eval.o                                                           \
81        fifo.o                                                           \
82        file.o                                                           \
83        float_dsp.o                                                      \
84        frame.o                                                          \
85        hash.o                                                           \
86        hmac.o                                                           \
87        imgutils.o                                                       \
88        intfloat_readwrite.o                                             \
89        intmath.o                                                        \
90        lfg.o                                                            \
91        lls.o                                                            \
92        log.o                                                            \
93        log2_tab.o                                                       \
94        mathematics.o                                                    \
95        md5.o                                                            \
96        mem.o                                                            \
97        murmur3.o                                                        \
98        dict.o                                                           \
99        opt.o                                                            \
100        parseutils.o                                                     \
101        pixdesc.o                                                        \
102        random_seed.o                                                    \
103        rational.o                                                       \
104        rc4.o                                                            \
105        samplefmt.o                                                      \
106        sha.o                                                            \
107        sha512.o                                                         \
108        time.o                                                           \
109        timecode.o                                                       \
110        tree.o                                                           \
111        utils.o                                                          \
112        xga_font_data.o                                                  \
113        xtea.o                                                           \
114
115 OBJS-$(CONFIG_LZO)                      += lzo.o
116 OBJS-$(CONFIG_OPENCL)                   += opencl.o opencl_internal.o
117
118 OBJS += $(COMPAT_OBJS:%=../compat/%)
119
120 SKIPHEADERS          = old_pix_fmts.h
121
122 SKIPHEADERS-$(HAVE_ATOMICS_GCC)        += atomic_gcc.h
123 SKIPHEADERS-$(HAVE_ATOMICS_SUNCC)      += atomic_suncc.h
124 SKIPHEADERS-$(HAVE_ATOMICS_WIN32)      += atomic_win32.h
125 SKIPHEADERS-$(CONFIG_OPENCL)           += opencl.h
126
127 TESTPROGS = adler32                                                     \
128             aes                                                         \
129             atomic                                                      \
130             avstring                                                    \
131             base64                                                      \
132             blowfish                                                    \
133             bprint                                                      \
134             cpu                                                         \
135             crc                                                         \
136             des                                                         \
137             error                                                       \
138             eval                                                        \
139             file                                                        \
140             fifo                                                        \
141             hmac                                                        \
142             lfg                                                         \
143             lls                                                         \
144             md5                                                         \
145             murmur3                                                     \
146             opt                                                         \
147             pca                                                         \
148             parseutils                                                  \
149             random_seed                                                 \
150             rational                                                    \
151             sha                                                         \
152             sha512                                                      \
153             tree                                                        \
154             xtea                                                        \
155
156 TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
157
158 TOOLS = ffhash ffeval ffescape
159
160 $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2