annotate Makefile @ 435:00b366335a60 libavutil

Do not install integer.h, it is not part of the public API.
author diego
date Sun, 27 Jan 2008 21:03:54 +0000
parents fc19d0d355ad
children 2fc7d825b16f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
1 include ../config.mak
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
2
381
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
3 OBJS = adler32.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
4 aes.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
5 base64.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
6 crc.o \
393
df047574d017 Add support for DES en- and decryption.
reimar
parents: 385
diff changeset
7 des.o \
385
f2e3cd83213e cosmetics: sort()
diego
parents: 384
diff changeset
8 fifo.o \
381
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
9 intfloat_readwrite.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
10 lls.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
11 log.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
12 lzo.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
13 mathematics.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
14 md5.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
15 mem.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
16 random.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
17 rational.o \
384
8d29c19c22c4 Add RC4 encryption/decryption function
reimar
parents: 381
diff changeset
18 rc4.o \
406
aedb9d18c7cf Provide sha1 to outside applications
lu_zero
parents: 393
diff changeset
19 sha1.o \
381
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
20 string.o \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
21 tree.o \
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
22
381
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
23 HEADERS = adler32.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
24 avstring.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
25 avutil.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
26 base64.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
27 common.h \
421
fc19d0d355ad install crc.h which is now part of public API
aurel
parents: 406
diff changeset
28 crc.h \
381
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
29 fifo.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
30 intfloat_readwrite.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
31 log.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
32 lzo.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
33 mathematics.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
34 md5.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
35 mem.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
36 random.h \
c0d706066f20 cosmetics: Sort some lines, whitespace changes.
diego
parents: 347
diff changeset
37 rational.h \
406
aedb9d18c7cf Provide sha1 to outside applications
lu_zero
parents: 393
diff changeset
38 sha1.h
267
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
39
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
40 NAME=avutil
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
41 LIBVERSION=$(LAVUVERSION)
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
42 LIBMAJOR=$(LAVUMAJOR)
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
43
d363937cc410 Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff changeset
44 include ../common.mak