[asterisk-commits] kpfleming: branch 1.4 r87463 - in /branches/1.4: ./ agi/ apps/ cdr/ channels/...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 29 17:12:17 CDT 2007
Author: kpfleming
Date: Mon Oct 29 17:12:16 2007
New Revision: 87463
URL: http://svn.digium.com/view/asterisk?view=rev&rev=87463
Log:
clean up (and ignore) assembler and preprocessor intermediate files if any are created during the build
Modified:
branches/1.4/Makefile.moddir_rules
branches/1.4/agi/ (props changed)
branches/1.4/agi/Makefile
branches/1.4/apps/ (props changed)
branches/1.4/cdr/ (props changed)
branches/1.4/channels/ (props changed)
branches/1.4/codecs/ (props changed)
branches/1.4/codecs/ilbc/ (props changed)
branches/1.4/codecs/ilbc/Makefile
branches/1.4/codecs/lpc10/ (props changed)
branches/1.4/codecs/lpc10/Makefile
branches/1.4/formats/ (props changed)
branches/1.4/funcs/ (props changed)
branches/1.4/main/ (props changed)
branches/1.4/main/db1-ast/ (props changed)
branches/1.4/main/db1-ast/Makefile
branches/1.4/main/editline/ (props changed)
branches/1.4/main/editline/Makefile.in
branches/1.4/pbx/ (props changed)
branches/1.4/res/ (props changed)
branches/1.4/utils/ (props changed)
branches/1.4/utils/Makefile
Modified: branches/1.4/Makefile.moddir_rules
URL: http://svn.digium.com/view/asterisk/branches/1.4/Makefile.moddir_rules?view=diff&rev=87463&r1=87462&r2=87463
==============================================================================
--- branches/1.4/Makefile.moddir_rules (original)
+++ branches/1.4/Makefile.moddir_rules Mon Oct 29 17:12:16 2007
@@ -70,7 +70,7 @@
@for file in $(patsubst %,$(SUBDIR)/%,$(filter-out %.o,$^)); do echo "INPUT (../$${file})" >> $@; done
clean::
- rm -f *.so *.o *.oo
+ rm -f *.so *.o *.oo *.s *.i
rm -f .*.o.d .*.oo.d
rm -f modules.link
Propchange: branches/1.4/agi/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
eagi-test
eagi-sphinx-test
*.d
+*.s
+*.i
strcompat.c
Modified: branches/1.4/agi/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/agi/Makefile?view=diff&rev=87463&r1=87462&r2=87463
==============================================================================
--- branches/1.4/agi/Makefile (original)
+++ branches/1.4/agi/Makefile Mon Oct 29 17:12:16 2007
@@ -39,7 +39,7 @@
clean:
rm -f *.so *.o look eagi-test eagi-sphinx-test
- rm -f .*.o.d .*.oo.d
+ rm -f .*.o.d .*.oo.d *.s *.i
rm -f strcompat.c
ifneq ($(wildcard .*.d),)
Propchange: branches/1.4/apps/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
*.d
*.a
*.so
+*.s
+*.i
modules.link
Propchange: branches/1.4/cdr/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
*.d
*.a
*.so
+*.s
+*.i
modules.link
Propchange: branches/1.4/channels/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,6 +1,8 @@
*.d
*.a
*.so
+*.s
+*.i
*.oo
gentone
busy.h
Propchange: branches/1.4/codecs/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
*.d
*.a
+*.s
+*.i
*.so
modules.link
Propchange: branches/1.4/codecs/ilbc/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,3 +1,5 @@
*.d
*.a
+*.s
+*.i
*.so
Modified: branches/1.4/codecs/ilbc/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/codecs/ilbc/Makefile?view=diff&rev=87463&r1=87462&r2=87463
==============================================================================
--- branches/1.4/codecs/ilbc/Makefile (original)
+++ branches/1.4/codecs/ilbc/Makefile Mon Oct 29 17:12:16 2007
@@ -17,4 +17,4 @@
$(CMD_PREFIX) $(RANLIB) $@
clean:
- rm -f $(LIB) *.o .*.d
+ rm -f $(LIB) *.o .*.d *.s *.i
Propchange: branches/1.4/codecs/lpc10/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,3 +1,5 @@
*.d
*.a
+*.s
+*.i
*.so
Modified: branches/1.4/codecs/lpc10/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/codecs/lpc10/Makefile?view=diff&rev=87463&r1=87462&r2=87463
==============================================================================
--- branches/1.4/codecs/lpc10/Makefile (original)
+++ branches/1.4/codecs/lpc10/Makefile Mon Oct 29 17:12:16 2007
@@ -74,4 +74,4 @@
$(CMD_PREFIX) $(RANLIB) $@
clean:
- rm -f *.o $(LIB) .*.d
+ rm -f *.o $(LIB) .*.d *.s *.i
Propchange: branches/1.4/formats/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
*.d
*.a
+*.s
+*.i
*.so
modules.link
Propchange: branches/1.4/funcs/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
*.d
*.a
+*.s
+*.i
*.so
modules.link
Propchange: branches/1.4/main/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,2 +1,5 @@
asterisk
*.d
+*.s
+*.i
+
Propchange: branches/1.4/main/db1-ast/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,3 +1,5 @@
*.d
*.a
+*.s
+*.i
*.so
Modified: branches/1.4/main/db1-ast/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/db1-ast/Makefile?view=diff&rev=87463&r1=87462&r2=87463
==============================================================================
--- branches/1.4/main/db1-ast/Makefile (original)
+++ branches/1.4/main/db1-ast/Makefile Mon Oct 29 17:12:16 2007
@@ -46,7 +46,7 @@
clean-depend:
clean:
- rm -f $(LIBDB) $(LIBDBSO) $(OBJS) $(SHOBJS)
+ rm -f $(LIBDB) $(LIBDBSO) $(OBJS) $(SHOBJS) *.s *.i
ASTCFLAGS:=-Wall -D__DBINTERFACE_PRIVATE -I. -I.. -Iinclude -Ihash -Ibtree -Irecno $(ASTCFLAGS)
Propchange: branches/1.4/main/editline/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -22,4 +22,6 @@
Makefile
cygdef.h
*.a
+*.s
+*.i
*.so
Modified: branches/1.4/main/editline/Makefile.in
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/editline/Makefile.in?view=diff&rev=87463&r1=87462&r2=87463
==============================================================================
--- branches/1.4/main/editline/Makefile.in (original)
+++ branches/1.4/main/editline/Makefile.in Mon Oct 29 17:12:16 2007
@@ -177,6 +177,7 @@
rm -f $(BGCSRCS:.c=.o_a) $(CCSRCS:.c=.o_a)
rm -f $(BGCSRCS:.c=.o_s) $(CCSRCS:.c=.o_s)
rm -f $(TCSRCS:.c=.o) $(TEST)
+ rm -f *.s *.i
distclean : clean
rm -f config.cache config.log config.status config.h Makefile
Propchange: branches/1.4/pbx/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
*.d
*.a
+*.s
+*.i
*.so
modules.link
Propchange: branches/1.4/res/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
*.d
*.a
+*.s
+*.i
*.so
modules.link
Propchange: branches/1.4/utils/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 17:12:16 2007
@@ -1,4 +1,6 @@
*.d
+*.s
+*.i
astman
smsq
stereorize
Modified: branches/1.4/utils/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/utils/Makefile?view=diff&rev=87463&r1=87462&r2=87463
==============================================================================
--- branches/1.4/utils/Makefile (original)
+++ branches/1.4/utils/Makefile Mon Oct 29 17:12:16 2007
@@ -55,7 +55,7 @@
for x in $(ALL_UTILS); do rm -f $$x $(DESTDIR)$(ASTSBINDIR)/$$x; done
clean:
- rm -f *.o $(ALL_UTILS) check_expr
+ rm -f *.o $(ALL_UTILS) check_expr *.s *.i
rm -f .*.o.d .*.oo.d
rm -f md5.c strcompat.c ast_expr2.c ast_expr2f.c pbx_ael.c
rm -f aelparse.c aelbison.c
More information about the asterisk-commits
mailing list