projects
/
platform
/
upstream
/
libav.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Move CFLAGS handling to common.mak.
[platform/upstream/libav.git]
/
libavutil
/
Makefile
1
#
2
# libavutil Makefile
3
#
4
include ../config.mak
5
6
CFLAGS+=-DBUILD_AVUTIL
7
8
OBJS= mathematics.o \
9
rational.o \
10
intfloat_readwrite.o \
11
crc.o \
12
md5.o \
13
lls.o \
14
adler32.o \
15
log.o \
16
mem.o \
17
fifo.o \
18
19
HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
20
intfloat_readwrite.h md5.h adler32.h log.h fifo.h
21
22
NAME=avutil
23
ifeq ($(BUILD_SHARED),yes)
24
LIBVERSION=$(LAVUVERSION)
25
LIBMAJOR=$(LAVUMAJOR)
26
endif
27
28
include $(SRC_PATH)/common.mak