git.videolan.org
/
ffmpeg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added HAVE_AV_CONFIG_H
[ffmpeg.git]
/
libav
/
Makefile
1
include ../config.mak
2
CFLAGS= $(OPTFLAGS) -Wall -g -I../libavcodec -DHAVE_AV_CONFIG_H
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