Makefile 7.41 KB
Newer Older
1 2
include $(SUBDIR)../config.mak

3 4
NAME = avutil

5
HEADERS = adler32.h                                                     \
6
          aes.h                                                         \
7
          attributes.h                                                  \
8
          audio_fifo.h                                                  \
9
          audioconvert.h                                                \
10
          avassert.h                                                    \
11 12 13
          avstring.h                                                    \
          avutil.h                                                      \
          base64.h                                                      \
14
          bprint.h                                                      \
15
          bswap.h                                                       \
16
          common.h                                                      \
17
          cpu.h                                                         \
18
          crc.h                                                         \
19
          error.h                                                       \
20
          eval.h                                                        \
21
          fifo.h                                                        \
22
          file.h                                                        \
23
          imgutils.h                                                    \
24
          intfloat.h                                                    \
25
          intfloat_readwrite.h                                          \
26
          intreadwrite.h                                                \
Ramiro Polla's avatar
Ramiro Polla committed
27
          lfg.h                                                         \
28 29 30 31 32
          log.h                                                         \
          lzo.h                                                         \
          mathematics.h                                                 \
          md5.h                                                         \
          mem.h                                                         \
33
          dict.h                                                        \
34
          opt.h                                                         \
35
          parseutils.h                                                  \
36
          pixdesc.h                                                     \
37
          pixfmt.h                                                      \
38
          random_seed.h                                                 \
39
          rational.h                                                    \
40
          samplefmt.h                                                   \
41
          sha.h                                                         \
42
          timecode.h                                                    \
43
          timestamp.h                                                   \
44

45 46 47 48 49
ARCH_HEADERS = bswap.h                                                  \
               intmath.h                                                \
               intreadwrite.h                                           \
               timer.h                                                  \

50 51
BUILT_HEADERS = avconfig.h

52 53
OBJS = adler32.o                                                        \
       aes.o                                                            \
54
       audio_fifo.o                                                     \
55
       audioconvert.o                                                   \
56
       avstring.o                                                       \
57
       base64.o                                                         \
58
       bprint.o                                                         \
59
       cpu.o                                                            \
60 61
       crc.o                                                            \
       des.o                                                            \
62
       error.o                                                          \
63
       eval.o                                                           \
64
       fifo.o                                                           \
65
       file.o                                                           \
66
       imgutils.o                                                       \
67
       intfloat_readwrite.o                                             \
68
       inverse.o                                                        \
69 70 71 72 73 74 75
       lfg.o                                                            \
       lls.o                                                            \
       log.o                                                            \
       lzo.o                                                            \
       mathematics.o                                                    \
       md5.o                                                            \
       mem.o                                                            \
76
       dict.o                                                           \
77
       opt.o                                                            \
78
       parseutils.o                                                     \
79
       pixdesc.o                                                        \
80
       random_seed.o                                                    \
81 82
       rational.o                                                       \
       rc4.o                                                            \
83
       samplefmt.o                                                      \
84
       sha.o                                                            \
85
       timecode.o                                                       \
86 87
       tree.o                                                           \
       utils.o                                                          \
88

89 90 91 92
TESTPROGS = adler32                                                     \
            aes                                                         \
            avstring                                                    \
            base64                                                      \
93
            bprint                                                      \
94 95 96 97
            cpu                                                         \
            crc                                                         \
            des                                                         \
            eval                                                        \
98
            file                                                        \
99 100 101 102 103
            fifo                                                        \
            lfg                                                         \
            lls                                                         \
            md5                                                         \
            opt                                                         \
104
            pca                                                         \
105
            parseutils                                                  \
106 107
            random_seed                                                 \
            rational                                                    \
108 109
            sha                                                         \
            tree                                                        \
110

111
TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
112

113 114
TOOLS = ffeval

115
$(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2