Makefile 8.69 KB
Newer Older
1 2
NAME = avutil

3
HEADERS = adler32.h                                                     \
4
          aes.h                                                         \
5
          attributes.h                                                  \
6
          audio_fifo.h                                                  \
7
          audioconvert.h                                                \
8
          avassert.h                                                    \
9 10 11
          avstring.h                                                    \
          avutil.h                                                      \
          base64.h                                                      \
12
          blowfish.h                                                    \
13
          bswap.h                                                       \
14
          buffer.h                                                      \
15
          channel_layout.h                                              \
16
          common.h                                                      \
17
          cpu.h                                                         \
18
          crc.h                                                         \
19
          downmix_info.h                                                \
20
          error.h                                                       \
21
          eval.h                                                        \
22
          fifo.h                                                        \
23
          file.h                                                        \
24
          frame.h                                                       \
25
          hmac.h                                                        \
26
          imgutils.h                                                    \
27
          intfloat.h                                                    \
28
          intreadwrite.h                                                \
Ramiro Polla's avatar
Ramiro Polla committed
29
          lfg.h                                                         \
30
          log.h                                                         \
31
          macros.h                                                      \
32 33 34
          mathematics.h                                                 \
          md5.h                                                         \
          mem.h                                                         \
35
          dict.h                                                        \
36
          old_pix_fmts.h                                                \
37
          opt.h                                                         \
38
          parseutils.h                                                  \
39
          pixdesc.h                                                     \
40
          pixfmt.h                                                      \
41
          random_seed.h                                                 \
42
          rational.h                                                    \
43
          samplefmt.h                                                   \
44
          sha.h                                                         \
45
          stereo3d.h                                                    \
46
          time.h                                                        \
47
          version.h                                                     \
48
          xtea.h                                                        \
49

50 51
HEADERS-$(CONFIG_LZO)                   += lzo.h

52 53 54 55 56
ARCH_HEADERS = bswap.h                                                  \
               intmath.h                                                \
               intreadwrite.h                                           \
               timer.h                                                  \

57 58
BUILT_HEADERS = avconfig.h

59 60
OBJS = adler32.o                                                        \
       aes.o                                                            \
61
       atomic.o                                                         \
62
       audio_fifo.o                                                     \
63
       avstring.o                                                       \
64
       base64.o                                                         \
65
       blowfish.o                                                       \
66
       buffer.o                                                         \
67
       channel_layout.o                                                 \
68
       cpu.o                                                            \
69 70
       crc.o                                                            \
       des.o                                                            \
71
       downmix_info.o                                                   \
72
       error.o                                                          \
73
       eval.o                                                           \
74
       fifo.o                                                           \
75
       file.o                                                           \
76
       file_open.o                                                      \
77
       float_dsp.o                                                      \
78
       frame.o                                                          \
79
       hmac.o                                                           \
80
       imgutils.o                                                       \
81
       intmath.o                                                        \
82 83 84
       lfg.o                                                            \
       lls.o                                                            \
       log.o                                                            \
85
       log2_tab.o                                                       \
86 87 88
       mathematics.o                                                    \
       md5.o                                                            \
       mem.o                                                            \
89
       dict.o                                                           \
90
       opt.o                                                            \
91
       parseutils.o                                                     \
92
       pixdesc.o                                                        \
93
       random_seed.o                                                    \
94 95
       rational.o                                                       \
       rc4.o                                                            \
96
       samplefmt.o                                                      \
97
       sha.o                                                            \
98
       stereo3d.o                                                       \
99
       time.o                                                           \
100 101
       tree.o                                                           \
       utils.o                                                          \
102
       xtea.o                                                           \
103

104 105
OBJS-$(CONFIG_LZO)                      += lzo.o

106
OBJS += $(COMPAT_OBJS:%=../compat/%)
107

108 109
SKIPHEADERS          = old_pix_fmts.h

110
SKIPHEADERS-$(HAVE_ATOMICS_GCC)        += atomic_gcc.h
111 112
SKIPHEADERS-$(HAVE_ATOMICS_SUNCC)      += atomic_suncc.h
SKIPHEADERS-$(HAVE_ATOMICS_WIN32)      += atomic_win32.h
113

114 115
TESTPROGS = adler32                                                     \
            aes                                                         \
116
            atomic                                                      \
117 118
            avstring                                                    \
            base64                                                      \
119
            blowfish                                                    \
120 121 122 123 124
            cpu                                                         \
            crc                                                         \
            des                                                         \
            eval                                                        \
            fifo                                                        \
125
            float_dsp                                                   \
126
            hmac                                                        \
127 128 129 130 131 132 133
            lfg                                                         \
            lls                                                         \
            md5                                                         \
            opt                                                         \
            parseutils                                                  \
            sha                                                         \
            tree                                                        \
134
            xtea                                                        \