[Asterisk-cvs] asterisk-addons Makefile,1.4,1.5

markster at lists.digium.com markster at lists.digium.com
Sun Sep 5 14:25:11 CDT 2004


Update of /usr/cvsroot/asterisk-addons
In directory mongoose.digium.com:/tmp/cvs-serv13105

Modified Files:
	Makefile 
Log Message:
Add MP3 format (to linear) (bug #2381)


Index: Makefile
===================================================================
RCS file: /usr/cvsroot/asterisk-addons/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Makefile	9 Apr 2004 00:42:43 -0000	1.4
+++ Makefile	5 Sep 2004 18:28:03 -0000	1.5
@@ -11,7 +11,9 @@
 # the GNU General Public License
 #
 
-MODS=
+.EXPORT_ALL_VARIABLES:
+
+MODS=format_mp3/format_mp3.so
 
 CFLAGS+=-fPIC
 CFLAGS+=-I../asterisk
@@ -38,11 +40,15 @@
 
 all: depend $(MODS)
 
+format_mp3/format_mp3.so:
+	make -C format_mp3 all
+
 install: all
 	for x in $(MODS); do $(INSTALL) -m 755 $$x $(MODULES_DIR) ; done
 
 clean:
 	rm -f *.so *.o .depend
+	make -C format_mp3 clean
 
 %.so : %.o
 	$(CC) -shared -Xlinker -x -o $@ $<




More information about the svn-commits mailing list