]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
build: simplify enabling of compat objects
[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        lfg.o                                                            \
70        lls.o                                                            \
71        log.o                                                            \
72        log2_tab.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 += $(COMPAT_OBJS:%=../compat/%)
92
93 SKIPHEADERS          = old_pix_fmts.h
94
95 TESTPROGS = adler32                                                     \
96             aes                                                         \
97             avstring                                                    \
98             base64                                                      \
99             blowfish                                                    \
100             cpu                                                         \
101             crc                                                         \
102             des                                                         \
103             eval                                                        \
104             fifo                                                        \
105             lfg                                                         \
106             lls                                                         \
107             md5                                                         \
108             opt                                                         \
109             parseutils                                                  \
110             sha                                                         \
111             tree                                                        \
112             xtea                                                        \