aboutsummaryrefslogtreecommitdiffstats
path: root/formats/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'formats/Makefile')
-rwxr-xr-xformats/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/formats/Makefile b/formats/Makefile
index f981e8de2..f38101f3c 100755
--- a/formats/Makefile
+++ b/formats/Makefile
@@ -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_gsm.so
+FORMAT_LIBS=format_g723.so format_wav.so format_mp3.so format_wav_gsm.so format_gsm.so format_vox.so
GSMLIB=../codecs/gsm/lib/libgsm.a
@@ -28,5 +28,8 @@ clean:
format_wav.so : format_wav.o
$(CC) -shared -Xlinker -x -o $@ $< -laudiofile
+format_mp3.so : format_mp3.o
+ $(CC) -shared -Xlinker -x -o $@ $< -lm
+
install: all
for x in $(FORMAT_LIBS); do $(INSTALL) -m 755 $$x $(MODULES_DIR) ; done