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