]> git.sesse.net Git - ffmpeg/blob - libav/Makefile
added HAVE_AV_CONFIG_H
[ffmpeg] / 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