annotate Makefile @ 84:3ceece5191f6 libavutil

Install log.h
author lucabe
date Wed, 19 Jul 2006 12:10:01 +0000
parents 8fb151c4d4c7
children e57687759aed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
6 # NOTE: -I.. is needed to include config.h
56
aaf464cadfa8 cosmetics: Break overly long lines.
diego
parents: 48
diff changeset
7 CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -DBUILD_AVUTIL -I.. \
69
da928d224953 replace -D_GNU_SOURCE with -D_ISOC9X_SOURCE to avoid accidental use
mru
parents: 67
diff changeset
8 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
9
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
10 OBJS= mathematics.o \
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
11 rational.o \
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
12 intfloat_readwrite.o \
30
664e2d2b92b9 generic crc calculation code
michael
parents: 28
diff changeset
13 crc.o \
48
e80a1c46386a compile md5 and include in libavutil.a
ivo
parents: 42
diff changeset
14 md5.o \
76
8c75234388b5 linear least squares solver using cholesky factorization
michael
parents: 69
diff changeset
15 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
16 adler32.o \
82
8fb151c4d4c7 Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutil
lucabe
parents: 81
diff changeset
17 log.o \
8fb151c4d4c7 Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutil
lucabe
parents: 81
diff changeset
18 mem.o \
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
19
28
07191bec33a2 move common parts of makefiles into common.mak
mru
parents: 27
diff changeset
20 HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
84
3ceece5191f6 Install log.h
lucabe
parents: 82
diff changeset
21 intfloat_readwrite.h md5.h adler32.h log.h
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
22
17
314e61f57c42 Move library name generation to configure, simplifies build system a bit more.
diego
parents: 16
diff changeset
23 NAME=avutil
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
24 ifeq ($(BUILD_SHARED),yes)
16
0e94608e337f Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 14
diff changeset
25 LIBVERSION=$(LAVUVERSION)
0e94608e337f Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 14
diff changeset
26 LIBMAJOR=$(LAVUMAJOR)
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
27 endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
28
28
07191bec33a2 move common parts of makefiles into common.mak
mru
parents: 27
diff changeset
29 include $(SRC_PATH)/common.mak