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