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