projects
/
libav.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Initial revision
[libav.git]
/
libav
/
Makefile
1
CFLAGS
= -
O2
-
Wall
-
g
2
LDFLAGS
= -
g
3
4
OBJS
=
common.o mpegvideo.o h263enc.o jrevdct.o jfdctfst.o \
5
mpegaudio.o ac3enc.o mjpegenc.o resample.o
6
LIB
=
libav.a
7
8
all
: $(
LIB
)
9
10
$(
LIB
): $(
OBJS
)
11
ar
rcs
$
@
$(
OBJS
)
12
13
%
.o
: %
.c
14
gcc
$(
CFLAGS
) -
c
-
o
$
@
$<
15
16
clean
:
17
rm
-
f
*
.o
*
~
*
.a