summaryrefslogtreecommitdiffstats
path: root/mp3lib/Makefile
diff options
context:
space:
mode:
authoratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-17 18:20:14 +0000
committeratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-17 18:20:14 +0000
commit754200a4d300bdfc27f0ab85705d3380b92be050 (patch)
tree5ea662fe7ab99545c0e5fe3b5fc7686b7af3e057 /mp3lib/Makefile
parentf0d16794b66a002b10758967087ef81591e86a2e (diff)
downloadmpv-754200a4d300bdfc27f0ab85705d3380b92be050.tar.bz2
mpv-754200a4d300bdfc27f0ab85705d3380b92be050.tar.xz
Added missing mathlib for linking.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@827 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/Makefile')
-rw-r--r--mp3lib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/mp3lib/Makefile b/mp3lib/Makefile
index 575a0756ba..c206feee09 100644
--- a/mp3lib/Makefile
+++ b/mp3lib/Makefile
@@ -19,10 +19,10 @@ libMP3.a: .depend $(OBJS)
$(AR) r libMP3.a $(OBJS)
test1: libMP3.a test.c
- $(CC) $(CFLAGS) test.c -o test1 -I.. -L. -lMP3
+ $(CC) $(CFLAGS) test.c -o test1 -I.. -L. -lMP3 -lm
test2: libMP3.a test2.c
- $(CC) $(CFLAGS) test2.c -o test2 -I.. -L. -lMP3
+ $(CC) $(CFLAGS) test2.c -o test2 -I.. -L. -lMP3 -lm
all: libMP3.a