diff options
author | François Revol <revol@free.fr> | 2004-11-20 23:10:07 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2004-11-20 23:10:07 +0000 |
commit | 27d5f18f663a240a0a1d1833ea6eefa3463cf323 (patch) | |
tree | 8eec60684a2d72fe38a7a9518c86cd1ee70988a9 /libavformat/Makefile | |
parent | 55429b553429b9c2f3f16e1b5d5038c8b6f45d9f (diff) | |
download | ffmpeg-27d5f18f663a240a0a1d1833ea6eefa3463cf323.tar.gz |
First implementation of nsv demuxer.
Get libavformat linked with lavc and lmp3lame is required. BeOS requires no undefined syms on link! (besides it's bad to leave undef syms)
Originally committed as revision 3696 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 944a5dd1c2..e54bcc2209 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -16,7 +16,7 @@ OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \ avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \ yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \ nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \ - sierravmd.o matroska.o sol.o electronicarts.o + sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o ifeq ($(CONFIG_RISKY),yes) OBJS+= asf.o @@ -83,6 +83,11 @@ ifeq ($(BUILD_SHARED),yes) SLIB= $(SLIBPREF)avformat$(SLIBSUF) endif +EXTRALIBS+=-lavcodec -L../libavcodec +ifeq ($(CONFIG_MP3LAME),yes) +EXTRALIBS+=-lmp3lame +endif + SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp) all: $(LIB) $(SLIB) |