Mercurial > libavutil.hg
annotate Makefile @ 255:add2141ed7b0 libavutil
fix 2 mistakes in doxy comments, spotted by Michael
author | gpoirier |
---|---|
date | Mon, 26 Feb 2007 14:53:42 +0000 |
parents | 9a977b2c7069 |
children | 1bbf9bc3fe18 |
rev | line source |
---|---|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
1 # |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
2 # libavutil Makefile |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
3 # |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
4 include ../config.mak |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
5 |
118 | 6 CFLAGS+=-DBUILD_AVUTIL |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
7 |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
8 OBJS= mathematics.o \ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
9 rational.o \ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
10 intfloat_readwrite.o \ |
30 | 11 crc.o \ |
48 | 12 md5.o \ |
76
8c75234388b5
linear least squares solver using cholesky factorization
michael
parents:
69
diff
changeset
|
13 lls.o \ |
77
503765250ebb
adding a \ so we can add more lines without having to do a "cosmetic" change in the previous line
michael
parents:
76
diff
changeset
|
14 adler32.o \ |
82
8fb151c4d4c7
Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutil
lucabe
parents:
81
diff
changeset
|
15 log.o \ |
8fb151c4d4c7
Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutil
lucabe
parents:
81
diff
changeset
|
16 mem.o \ |
110
813b7366ac3f
* Moving FifoBuffer out of libavformat/avformat.h and
romansh
parents:
97
diff
changeset
|
17 fifo.o \ |
136 | 18 tree.o \ |
234 | 19 lzo.o \ |
239
06fd8e5c5a04
av_random() by Ryan Martell rdm4 name-server-seperator martellventures d0t com
michael
parents:
234
diff
changeset
|
20 random.o \ |
240
80f17646fa2d
mxf aes decryption support, patch by Reimar, simplified to only look for first crypto context, will be extended once we get files with multiple cryptocontext, and hope that they won't have broken container ul
bcoudurier
parents:
239
diff
changeset
|
21 aes.o \ |
244 | 22 base64.o \ |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
23 |
28 | 24 HEADERS = avutil.h common.h mathematics.h integer.h rational.h \ |
239
06fd8e5c5a04
av_random() by Ryan Martell rdm4 name-server-seperator martellventures d0t com
michael
parents:
234
diff
changeset
|
25 intfloat_readwrite.h md5.h adler32.h log.h fifo.h lzo.h \ |
06fd8e5c5a04
av_random() by Ryan Martell rdm4 name-server-seperator martellventures d0t com
michael
parents:
234
diff
changeset
|
26 random.h |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
27 |
17
314e61f57c42
Move library name generation to configure, simplifies build system a bit more.
diego
parents:
16
diff
changeset
|
28 NAME=avutil |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
29 ifeq ($(BUILD_SHARED),yes) |
16
0e94608e337f
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
14
diff
changeset
|
30 LIBVERSION=$(LAVUVERSION) |
0e94608e337f
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
14
diff
changeset
|
31 LIBMAJOR=$(LAVUMAJOR) |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
32 endif |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
33 |
133 | 34 include ../common.mak |