diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-07-22 14:37:44 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-07-22 14:37:44 +0000 |
commit | 85f07f223de9fbeb2b9d66db11f89091ac717926 (patch) | |
tree | 07c79a0ac6c7829c2ce248f2747bdfcd547262a9 /libav/Makefile | |
parent | de6d9b6404bfd1c589799142da5a95428f146edd (diff) | |
download | ffmpeg-85f07f223de9fbeb2b9d66db11f89091ac717926.tar.gz |
merge
Originally committed as revision 6 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/Makefile')
-rw-r--r-- | libav/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libav/Makefile b/libav/Makefile new file mode 100644 index 0000000000..08d507a7f2 --- /dev/null +++ b/libav/Makefile @@ -0,0 +1,22 @@ +include ../config.mk +CFLAGS= -O2 -Wall -g -I../libavcodec + +OBJS= rm.o mpeg.o asf.o avienc.o jpegenc.o swf.o wav.o raw.o \ + avidec.o ffm.o \ + avio.o aviobuf.o utils.o \ + udp.o http.o file.o grab.o audio.o img.o + +LIB= libav.a + +all: $(LIB) + +$(LIB): $(OBJS) + rm -f $@ + $(AR) rcs $@ $(OBJS) + +%.o: %.c + $(CC) $(CFLAGS) -c -o $@ $< + +clean: + rm -f *.o *~ *.a + |