[svn-commits] oej: branch oej/codename-pineapple r44549 - in /team/oej/codename-pineapple: ...

svn-commits at lists.digium.com svn-commits at lists.digium.com
Fri Oct 6 02:50:29 MST 2006


Author: oej
Date: Fri Oct  6 04:50:28 2006
New Revision: 44549

URL: http://svn.digium.com/view/asterisk?rev=44549&view=rev
Log:
Playing around

Added:
    team/oej/codename-pineapple/channels/sip3/
    team/oej/codename-pineapple/channels/sip3/Makefile   (with props)
Modified:
    team/oej/codename-pineapple/channels/Makefile
    team/oej/codename-pineapple/utils/Makefile

Modified: team/oej/codename-pineapple/channels/Makefile
URL: http://svn.digium.com/view/asterisk/team/oej/codename-pineapple/channels/Makefile?rev=44549&r1=44548&r2=44549&view=diff
==============================================================================
--- team/oej/codename-pineapple/channels/Makefile (original)
+++ team/oej/codename-pineapple/channels/Makefile Fri Oct  6 04:50:28 2006
@@ -62,6 +62,7 @@
 clean::
 	rm -f busy.h ringtone.h gentone
 	$(MAKE) -C misdn clean
+	$(MAKE) -C sip3 clean
 
 ifneq ($(wildcard h323/Makefile.ast),)
   include h323/Makefile.ast
@@ -79,6 +80,9 @@
 	$(CMD_PREFIX) echo "***************************************************************"
 	$(CMD_PREFIX) exit 1
 endif
+
+sip3/libastsip3.a:
+	$(CMD_PREFIX) $(MAKE) -C sip3
 
 gentone: gentone.c
 	$(ECHO_PREFIX) echo "   [LD] $^ -> $@"
@@ -112,3 +116,5 @@
 misdn_config.o: ASTCFLAGS+=-Imisdn 
 
 $(if $(filter chan_misdn,$(EMBEDDED_MODS)),modules.link,chan_misdn.so): chan_misdn.o misdn_config.o misdn/isdn_lib.o misdn/isdn_msg_parser.o
+
+chan_sip3.o: ASTCFLAGS+=-Isip3

Added: team/oej/codename-pineapple/channels/sip3/Makefile
URL: http://svn.digium.com/view/asterisk/team/oej/codename-pineapple/channels/sip3/Makefile?rev=44549&view=auto
==============================================================================
--- team/oej/codename-pineapple/channels/sip3/Makefile (added)
+++ team/oej/codename-pineapple/channels/sip3/Makefile Fri Oct  6 04:50:28 2006
@@ -1,0 +1,10 @@
+#
+# Makefile for chan_sip3 support
+#
+all:
+
+%.o: %.c
+	$(CC) $(CFLAGS) -c -o $@ $<
+
+clean: 
+	rm -rf *.a *.o *.so 

Propchange: team/oej/codename-pineapple/channels/sip3/Makefile
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/oej/codename-pineapple/channels/sip3/Makefile
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/oej/codename-pineapple/channels/sip3/Makefile
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: team/oej/codename-pineapple/utils/Makefile
URL: http://svn.digium.com/view/asterisk/team/oej/codename-pineapple/utils/Makefile?rev=44549&r1=44548&r2=44549&view=diff
==============================================================================
--- team/oej/codename-pineapple/utils/Makefile (original)
+++ team/oej/codename-pineapple/utils/Makefile Fri Oct  6 04:50:28 2006
@@ -13,7 +13,7 @@
 
 .PHONY: clean clean-depend all depend uninstall
 
-ALL_UTILS:=astman smsq stereorize streamplayer aelparse muted
+ALL_UTILS:=astman smsq stereorize streamplayer aelparse #muted
 UTILS:=$(ALL_UTILS)
 
 include $(ASTTOPDIR)/Makefile.rules



More information about the svn-commits mailing list