aboutsummaryrefslogtreecommitdiffstats
path: root/main/Makefile
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-07 20:09:58 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-07 20:09:58 +0000
commit121cf8a56782b4edcdba70d384db5f75a8f91d52 (patch)
treef117e3c93697615065f587b98712a05f16933a55 /main/Makefile
parentbec9a4355a1ec83b28869c42ee207a9b9785a7b1 (diff)
Merged revisions 53464 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r53464 | russell | 2007-02-07 14:07:39 -0600 (Wed, 07 Feb 2007) | 4 lines The clean target actually needs to run "distclean" on editline. This is because we need to make sure that its configure script gets executed again, because the CFLAGS we want to pass to editline may have changed. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@53465 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/Makefile')
-rw-r--r--main/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile b/main/Makefile
index 3afdddfcd..7d05ebfb0 100644
--- a/main/Makefile
+++ b/main/Makefile
@@ -142,6 +142,6 @@ asterisk: $(OBJS) editline/libedit.a db1-ast/libdb1.a $(AST_EMBED_LDSCRIPTS)
clean::
rm -f asterisk
rm -f db1-ast/.*.d
- @if [ -f editline/Makefile ]; then $(MAKE) -C editline clean ; fi
+ @if [ -f editline/Makefile ]; then $(MAKE) -C editline distclean ; fi
@$(MAKE) -C db1-ast clean
@$(MAKE) -C stdtime clean