[asterisk-commits] crichter: branch 1.2 r57962 - /branches/1.2/channels/Makefile

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Mar 5 16:18:50 MST 2007


Author: crichter
Date: Mon Mar  5 17:18:49 2007
New Revision: 57962

URL: http://svn.digium.com/view/asterisk?view=rev&rev=57962
Log:
subdirs like misdn and h323 should be cleaned by the clean target from channels/Makefile as well

Modified:
    branches/1.2/channels/Makefile

Modified: branches/1.2/channels/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.2/channels/Makefile?view=diff&rev=57962&r1=57961&r2=57962
==============================================================================
--- branches/1.2/channels/Makefile (original)
+++ branches/1.2/channels/Makefile Mon Mar  5 17:18:49 2007
@@ -15,6 +15,8 @@
 #
 
 CHANNEL_LIBS=chan_sip.so chan_agent.so chan_mgcp.so chan_iax2.so chan_local.so chan_skinny.so chan_features.so
+
+SUBDIRS=misdn h323
 
 ifneq (${OSARCH},CYGWIN)
 # if you really, really want to use these drivers, uncomment the line below
@@ -154,6 +156,7 @@
 all: depend $(CHANNEL_LIBS) 
 
 clean:
+	for x in $(SUBDIRS); do $(MAKE) -C $$x clean || exit 1 ; done
 	rm -f *.so *.o .depend
 	rm -f busy.h ringtone.h gentone gentone-ulaw
 



More information about the asterisk-commits mailing list