summaryrefslogtreecommitdiff
path: root/formats/Makefile
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>1999-12-12 08:49:19 +0000
committerMark Spencer <markster@digium.com>1999-12-12 08:49:19 +0000
commita34c3d3484e781d26f55f2629e0a92de70e24f0e (patch)
tree91595c2babd8f2df982aaf130ce18ccd8b6b7381 /formats/Makefile
parent42d4c7991cc648294965070cc0f053a4611408e1 (diff)
Version 0.1.1 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@135 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'formats/Makefile')
-rwxr-xr-xformats/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/formats/Makefile b/formats/Makefile
index e9872c613..f981e8de2 100755
--- a/formats/Makefile
+++ b/formats/Makefile
@@ -3,7 +3,7 @@
#
# Makefile for file format modules
#
-# Copyright (C) 1999, Adtran Inc. and Linux Support Services, LLC
+# Copyright (C) 1999, Mark Spencer
#
# Mark Spencer <markster@linux-support.net>
#
@@ -11,7 +11,7 @@
# the GNU General Public License
#
-FORMAT_LIBS=format_g723.so format_wav.so format_mp3.so # format_wav_gsm.so
+FORMAT_LIBS=format_g723.so format_wav.so format_mp3.so format_wav_gsm.so format_gsm.so
GSMLIB=../codecs/gsm/lib/libgsm.a
@@ -28,8 +28,5 @@ clean:
format_wav.so : format_wav.o
$(CC) -shared -Xlinker -x -o $@ $< -laudiofile
-format_wav_gsm.so : format_wav_gsm.o
- $(CC) -shared -Xlinker -x -o $@ $< $(LIBGSM)
-
install: all
for x in $(FORMAT_LIBS); do $(INSTALL) -m 755 $$x $(MODULES_DIR) ; done