summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFrançois Revol <revol@free.fr>2002-03-08 09:09:57 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-03-08 09:09:57 +0000
commitef0bc4c97f1ad704c0d6322775902c5d62adf546 (patch)
treec672090feb047ee57a31a9c4dd77485bdb478c5a /Makefile
parent73c8e5144af3f90ccb21fa1d058ae02b3394aab0 (diff)
* BeOS patch by François Revol <revol@free.fr>
fixing some compilation problems Originally committed as revision 319 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a35c32ae0e..dda8b165bd 100644
--- a/Makefile
+++ b/Makefile
@@ -33,10 +33,10 @@ lib:
$(MAKE) -C libav all
ffmpeg$(EXE): ffmpeg.o libav/libav.a $(DEP_FFMPEG_LIB)
- $(CC) $(LDFLAGS) -lm -o $@ $^ $(FFMPEG_LIB)
+ $(CC) $(LDFLAGS) $(EXTRALIBS) -o $@ $^ $(FFMPEG_LIB)
ffserver$(EXE): ffserver.o libav/libav.a $(DEP_FFMPEG_LIB)
- $(CC) $(LDFLAGS) -lm -o $@ $^ $(FFMPEG_LIB)
+ $(CC) $(LDFLAGS) $(EXTRALIBS) -o $@ $^ $(FFMPEG_LIB)
ffplay: ffmpeg$(EXE)
ln -sf $< $@