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