projects
/
libav.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
merge
[libav.git]
/
libav
/
Makefile
1
include
..
/
config.mk
2
CFLAGS
= -
O2
-
Wall
-
g
-
I..
/
libavcodec
3
4
OBJS
=
rm
.o mpeg.o asf.o avienc.o jpegenc.o swf.o wav.o raw.o \
5
avidec.o ffm.o \
6
avio.o aviobuf.o utils.o \
7
udp.o http.o file.o grab.o audio.o img.o
8
9
LIB
=
libav.a
10
11
all
: $(
LIB
)
12
13
$(
LIB
): $(
OBJS
)
14
rm
-
f
$
@
15
$(
AR
)
rcs
$
@
$(
OBJS
)
16
17
%
.o
: %
.c
18
$(
CC
) $(
CFLAGS
) -
c
-
o
$
@
$<
19
20
clean
:
21
rm
-
f
*
.o
*
~
*
.a
22