diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-09-16 20:29:19 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-09-16 20:29:19 +0000 |
commit | 165f74ff4644b9183a482005951ef45c42bb71f5 (patch) | |
tree | 1635dab959643fa02a681c55cdf82f73685d01f8 | |
parent | cf7412b58d5fb7fe37c15a916057c9b5398eb622 (diff) | |
download | ffmpeg-165f74ff4644b9183a482005951ef45c42bb71f5.tar.gz |
remove unused AMREXTRALIBS
Originally committed as revision 2287 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 675be147ba..e653e3e344 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -1,6 +1,6 @@ # # libavformat Makefile -# (c) 2000, 2001, 2002 Fabrice Bellard +# (c) 2000-2003 Fabrice Bellard # include ../config.mak @@ -78,10 +78,10 @@ $(LIB): $(OBJS) $(PPOBJS) $(SLIB): $(OBJS) ifeq ($(CONFIG_WIN32),yes) - $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(AMREXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll + $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll -lib /machine:i386 /def:$(@:.dll=.def) else - $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(AMREXTRALIBS) + $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) endif depend: $(SRCS) |