aboutsummaryrefslogtreecommitdiffstats
path: root/channels/misdn/Makefile
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-20 00:08:12 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-20 00:08:12 +0000
commit89ca122df3589e8fbc5daf987c4da583ad4f1c98 (patch)
tree65f00ed32951109cc5705678aae8f5912b65c411 /channels/misdn/Makefile
parentf34073de7e10e6b9d49b7f33b9e4c5cc5bf445ac (diff)
Merged revisions 157859 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r157859 | kpfleming | 2008-11-19 15:34:47 -0600 (Wed, 19 Nov 2008) | 7 lines the gcc optimizer frequently finds broken code (use of uninitalized variables, unreachable code, etc.), which is good. however, developers usually compile with the optimizer turned off, because if they need to debug the resulting code, optimized code makes that process very difficult. this means that we get code changes committed that weren't adequately checked over for these sorts of problems. with this build system change, if (and only if) --enable-dev-mode was used and DONT_OPTIMIZE is turned on, when a source file is compiled it will actually be preprocessed (into a .i or .ii file), then compiled once with optimization (with the result sent to /dev/null) and again without optimization (but only if the first compile succeeded, of course). while making these changes, i did some cleanup work in Makefile.rules to move commonly-used combinations of flag variables into their own variables, to make the file easier to read and maintain ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@157974 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/misdn/Makefile')
-rw-r--r--channels/misdn/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/misdn/Makefile b/channels/misdn/Makefile
index 85478225b..e277636e6 100644
--- a/channels/misdn/Makefile
+++ b/channels/misdn/Makefile
@@ -14,4 +14,4 @@ portinfo: portinfo.o
$(CC) -o $@ $^ -lisdnnet -lmISDN -lpthread
clean:
- rm -rf *.a *.o *.so portinfo
+ rm -rf *.a *.o *.so portinfo *.i