Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-08-03 20:27:30 +0400
committerDiego Biurrun <diego@biurrun.de>2006-08-03 20:27:30 +0400
commit5cb854e1c68330f5dd0ca13cabb2a9a58b53b7eb (patch)
tree9fb5de3750bfb6fb12af196434a9f6f678e11d4e /common.mak
parent2965f17b4fd371438fbc2cb401f1562cdda6df5b (diff)
Move MinGW special casing for shared lib creation to configure.
Originally committed as revision 5921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak4
1 files changed, 1 insertions, 3 deletions
diff --git a/common.mak b/common.mak
index 41cac95ca1..2748e5ed46 100644
--- a/common.mak
+++ b/common.mak
@@ -22,9 +22,7 @@ $(SLIBNAME): $(SLIBNAME_WITH_MAJOR)
$(SLIBNAME_WITH_MAJOR): $(SHARED_OBJS)
$(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $^ $(EXTRALIBS) $(EXTRAOBJS)
-ifeq ($(CONFIG_MINGW),yes)
- -lib /machine:i386 /def:$(@:.dll=.def)
-endif
+ $(SLIB_EXTRA_CMD)
%.o: %.c
$(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<