annotate Makefile @ 42:00f34c83c69b libavutil

remove redundant make variable SUBDIR
author mru
date Thu, 01 Jun 2006 21:57:44 +0000
parents b6f5cb968a88
children e80a1c46386a
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
22
3b56407b3f96 On MinGW it is not possible to build shared and static libraries at once.
diego
parents: 21
diff changeset
7 CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -DBUILD_AVUTIL -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
8
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
9 OBJS= mathematics.o \
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
10 rational.o \
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
11 intfloat_readwrite.o \
30
664e2d2b92b9 generic crc calculation code
michael
parents: 28
diff changeset
12 crc.o \
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
13
28
07191bec33a2 move common parts of makefiles into common.mak
mru
parents: 27
diff changeset
14 HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
07191bec33a2 move common parts of makefiles into common.mak
mru
parents: 27
diff changeset
15 intfloat_readwrite.h
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
16
17
314e61f57c42 Move library name generation to configure, simplifies build system a bit more.
diego
parents: 16
diff changeset
17 NAME=avutil
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
18 ifeq ($(BUILD_SHARED),yes)
16
0e94608e337f Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 14
diff changeset
19 LIBVERSION=$(LAVUVERSION)
0e94608e337f Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 14
diff changeset
20 LIBMAJOR=$(LAVUMAJOR)
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
21 endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
22
28
07191bec33a2 move common parts of makefiles into common.mak
mru
parents: 27
diff changeset
23 include $(SRC_PATH)/common.mak