]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
examples: add scaling_video example
[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           common.h                                                      \
18           cpu.h                                                         \
19           crc.h                                                         \
20           error.h                                                       \
21           eval.h                                                        \
22           fifo.h                                                        \
23           file.h                                                        \
24           imgutils.h                                                    \
25           intfloat.h                                                    \
26           intfloat_readwrite.h                                          \
27           intreadwrite.h                                                \
28           lfg.h                                                         \
29           log.h                                                         \
30           lzo.h                                                         \
31           mathematics.h                                                 \
32           md5.h                                                         \
33           mem.h                                                         \
34           dict.h                                                        \
35           opt.h                                                         \
36           parseutils.h                                                  \
37           pixdesc.h                                                     \
38           pixfmt.h                                                      \
39           random_seed.h                                                 \
40           rational.h                                                    \
41           samplefmt.h                                                   \
42           sha.h                                                         \
43           time.h                                                        \
44           timecode.h                                                    \
45           timestamp.h                                                   \
46           version.h                                                     \
47           xtea.h                                                        \
48
49 ARCH_HEADERS = bswap.h                                                  \
50                intmath.h                                                \
51                intreadwrite.h                                           \
52                timer.h                                                  \
53
54 BUILT_HEADERS = avconfig.h
55
56 OBJS = adler32.o                                                        \
57        aes.o                                                            \
58        audio_fifo.o                                                     \
59        audioconvert.o                                                   \
60        avstring.o                                                       \
61        base64.o                                                         \
62        blowfish.o                                                       \
63        bprint.o                                                         \
64        cpu.o                                                            \
65        crc.o                                                            \
66        des.o                                                            \
67        error.o                                                          \
68        eval.o                                                           \
69        fifo.o                                                           \
70        file.o                                                           \
71        float_dsp.o                                                      \
72        imgutils.o                                                       \
73        intfloat_readwrite.o                                             \
74        inverse.o                                                        \
75        lfg.o                                                            \
76        lls.o                                                            \
77        log.o                                                            \
78        lzo.o                                                            \
79        mathematics.o                                                    \
80        md5.o                                                            \
81        mem.o                                                            \
82        dict.o                                                           \
83        opt.o                                                            \
84        parseutils.o                                                     \
85        pixdesc.o                                                        \
86        random_seed.o                                                    \
87        rational.o                                                       \
88        rc4.o                                                            \
89        samplefmt.o                                                      \
90        sha.o                                                            \
91        time.o                                                           \
92        timecode.o                                                       \
93        tree.o                                                           \
94        utils.o                                                          \
95        xtea.o                                                           \
96
97 OBJS-$(!HAVE_SNPRINTF) += ../compat/snprintf.o
98 OBJS-$(HAVE_BROKEN_STRTOD) += ../compat/strtod.o
99
100 TESTPROGS = adler32                                                     \
101             aes                                                         \
102             avstring                                                    \
103             base64                                                      \
104             blowfish                                                    \
105             bprint                                                      \
106             cpu                                                         \
107             crc                                                         \
108             des                                                         \
109             error                                                       \
110             eval                                                        \
111             file                                                        \
112             fifo                                                        \
113             lfg                                                         \
114             lls                                                         \
115             md5                                                         \
116             opt                                                         \
117             pca                                                         \
118             parseutils                                                  \
119             random_seed                                                 \
120             rational                                                    \
121             sha                                                         \
122             tree                                                        \
123             xtea                                                        \
124
125 TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
126
127 TOOLS = ffeval
128
129 $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2