aboutsummaryrefslogtreecommitdiffstats
path: root/utils/Makefile
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-21 03:56:22 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-21 03:56:22 +0000
commit799f7460d92342318c5a8e617e73cad96a6c081e (patch)
treebd3a5e293acff59ef674f147c1b5e6cd74a576ad /utils/Makefile
parentad916c0c92be96c62e6ea33ca4c8e767307ef5a5 (diff)
Add stereoize (bug #3142), faster than soxmix
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4859 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils/Makefile')
-rwxr-xr-xutils/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 352752eac..dcacce210 100755
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -8,7 +8,7 @@ ifeq ($(findstring BSD,${OSARCH}),BSD)
CFLAGS+=-I/usr/local/include -L/usr/local/lib
endif
-TARGET=none
+TARGET=stereorize
TARGET+=$(shell if [ -f /usr/include/popt.h ]; then echo "smsq"; else if [ -f /usr/local/include/popt.h ]; then echo "smsq"; fi ; fi)
TARGET+=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else if [ -f /usr/local/include/newt.h ]; then echo "astman"; fi ; fi)
@@ -22,14 +22,15 @@ install:
fi; \
done
-none:
-
clean:
rm -f *.o astman smsq .depend
astman: astman.o ../md5.o
$(CC) $(CFLAGS) -o astman astman.o ../md5.o -lnewt
+stereorize: stereorize.o frame.o
+ $(CC) $(CFLAGS) -o stereorize stereorize.o frame.o -lm
+
smsq: smsq.o
$(CC) $(CFLAGS) -o smsq smsq.o -lpopt