aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/Makefile
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2001-03-16 21:36:38 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2001-03-16 21:36:38 +0000
commit705363bec0e3998e30845e63dc9f5632c1746988 (patch)
treec7a55806603e482029e4818361f6b053a01895c0 /codecs/Makefile
parent3380d88c815f2787568dd31ea9a23dcc11877730 (diff)
Version 0.1.7 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@241 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs/Makefile')
-rwxr-xr-xcodecs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/codecs/Makefile b/codecs/Makefile
index baec412a5..b07d72c64 100755
--- a/codecs/Makefile
+++ b/codecs/Makefile
@@ -28,7 +28,7 @@ LIBGSM=gsm/lib/libgsm.a
LIBMP3=mp3/libmp3.a
LIBLPC10=lpc10/liblpc10.a
-CODECS+=$(MODG723) codec_gsm.so codec_mp3_d.so codec_lpc10.so
+CODECS+=$(MODG723) codec_gsm.so codec_mp3_d.so codec_lpc10.so codec_adpcm.so
all: $(CODECS)
@@ -71,7 +71,7 @@ codec_lpc10.so: codec_lpc10.o $(LIBLPC10)
$(CC) -shared -Xlinker -x -o $@ $< $(LIBLPC10) -lm
codec_mp3_d.so: codec_mp3_d.o $(LIBMP3)
- $(CC) -shared -Xlinker -x -o $@ $< $(LIBMP3)
+ $(CC) -lm -shared -Xlinker -x -o $@ $< $(LIBMP3)
%.so : %.o
$(CC) -shared -Xlinker -x -o $@ $<