summaryrefslogtreecommitdiff
path: root/libavformat/Makefile
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-03-15 12:37:39 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-03-15 12:37:39 +0000
commit1f8f50efbe0d11765b48de0befc38fb7a554a307 (patch)
treeae7dee37dffb1d0bb7d0e708d99e32e22e6b0bfb /libavformat/Makefile
parent7c7f3866775490f3869a6c7beeaf48636c05c16b (diff)
dont link with libavcodec twice on win32
Originally committed as revision 4039 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r--libavformat/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile
index 42245427b3..6ff36d1a5b 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -94,7 +94,7 @@ $(LIB): $(OBJS) $(PPOBJS)
$(SLIB): $(OBJS)
ifeq ($(CONFIG_WIN32),yes)
- $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
+ $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
-lib /machine:i386 /def:$(@:.dll=.def)
else
$(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)