]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
lavu: fix typo in Makefile
[ffmpeg] / libavutil / Makefile
1 NAME = avutil
2
3 HEADERS = adler32.h                                                     \
4           aes.h                                                         \
5           attributes.h                                                  \
6           audio_fifo.h                                                  \
7           audioconvert.h                                                \
8           avassert.h                                                    \
9           avstring.h                                                    \
10           avutil.h                                                      \
11           base64.h                                                      \
12           blowfish.h                                                    \
13           bswap.h                                                       \
14           common.h                                                      \
15           cpu.h                                                         \
16           crc.h                                                         \
17           error.h                                                       \
18           eval.h                                                        \
19           fifo.h                                                        \
20           file.h                                                        \
21           imgutils.h                                                    \
22           intfloat.h                                                    \
23           intfloat_readwrite.h                                          \
24           intreadwrite.h                                                \
25           lfg.h                                                         \
26           log.h                                                         \
27           lzo.h                                                         \
28           mathematics.h                                                 \
29           md5.h                                                         \
30           mem.h                                                         \
31           dict.h                                                        \
32           old_pix_fmts.h                                                \
33           opt.h                                                         \
34           parseutils.h                                                  \
35           pixdesc.h                                                     \
36           pixfmt.h                                                      \
37           random_seed.h                                                 \
38           rational.h                                                    \
39           samplefmt.h                                                   \
40           sha.h                                                         \
41           time.h                                                        \
42           version.h                                                     \
43           xtea.h                                                        \
44
45 ARCH_HEADERS = bswap.h                                                  \
46                intmath.h                                                \
47                intreadwrite.h                                           \
48                timer.h                                                  \
49
50 BUILT_HEADERS = avconfig.h
51
52 OBJS = adler32.o                                                        \
53        aes.o                                                            \
54        audio_fifo.o                                                     \
55        audioconvert.o                                                   \
56        avstring.o                                                       \
57        base64.o                                                         \
58        blowfish.o                                                       \
59        cpu.o                                                            \
60        crc.o                                                            \
61        des.o                                                            \
62        error.o                                                          \
63        eval.o                                                           \
64        fifo.o                                                           \
65        file.o                                                           \
66        float_dsp.o                                                      \
67        imgutils.o                                                       \
68        intfloat_readwrite.o                                             \
69        inverse.o                                                        \
70        lfg.o                                                            \
71        lls.o                                                            \
72        log.o                                                            \
73        lzo.o                                                            \
74        mathematics.o                                                    \
75        md5.o                                                            \
76        mem.o                                                            \
77        dict.o                                                           \
78        opt.o                                                            \
79        parseutils.o                                                     \
80        pixdesc.o                                                        \
81        random_seed.o                                                    \
82        rational.o                                                       \
83        rc4.o                                                            \
84        samplefmt.o                                                      \
85        sha.o                                                            \
86        time.o                                                           \
87        tree.o                                                           \
88        utils.o                                                          \
89        xtea.o                                                           \
90
91 OBJS-$(HAVE_MSVCRT) += ../compat/msvcrt/snprintf.o                      \
92                        ../compat/strtod.o
93
94 TESTPROGS = adler32                                                     \
95             aes                                                         \
96             avstring                                                    \
97             base64                                                      \
98             blowfish                                                    \
99             cpu                                                         \
100             crc                                                         \
101             des                                                         \
102             eval                                                        \
103             fifo                                                        \
104             lfg                                                         \
105             lls                                                         \
106             md5                                                         \
107             opt                                                         \
108             parseutils                                                  \
109             sha                                                         \
110             tree                                                        \
111             xtea                                                        \