1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-06 08:29:25 +02:00

* using liba52

Originally committed as revision 417 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Zdenek Kabelac
2002-04-22 19:57:45 +00:00
parent 623563c04a
commit 5751432312
4 changed files with 57 additions and 30 deletions

View File

@@ -29,6 +29,9 @@ EXTRALIBS+=-lmp3lame
endif
endif
OBJS = ffmpeg.o ffserver.o
SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
all: lib $(PROG)
lib:
@@ -52,6 +55,11 @@ install: all
install -s -m 755 $(PROG) $(prefix)/bin
ln -sf ffmpeg $(prefix)/bin/ffplay
dep: depend
depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
clean:
$(MAKE) -C libavcodec clean
$(MAKE) -C libav clean
@@ -63,3 +71,7 @@ distclean: clean
TAGS:
etags *.[ch] libav/*.[ch] libavcodec/*.[ch]
ifneq ($(wildcard .depend),)
include .depend
endif