diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-03 19:23:39 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-03 19:23:39 +0000 |
commit | 0533322ea3e91c3f7efc642456a024a305ecb967 (patch) | |
tree | deb208cddefd73ea415ee6771474e8d8f42b9dec /common.mak | |
parent | 5523d5f41ef1b47bf262c333e504f589668ed30f (diff) | |
download | ffmpeg-0533322ea3e91c3f7efc642456a024a305ecb967.tar.gz |
Move EXTRALIBS handling to common.mak.
Originally committed as revision 6545 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common.mak b/common.mak index cc7c7823f4..ac570c1f51 100644 --- a/common.mak +++ b/common.mak @@ -10,6 +10,8 @@ OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS) STATIC_OBJS := $(OBJS) $(STATIC_OBJS) SHARED_OBJS := $(OBJS) $(SHARED_OBJS) +EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) + all: $(EXTRADEPS) $(LIB) $(SLIBNAME) $(LIB): $(STATIC_OBJS) |