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