From: krakjoe Date: Sat, 16 Nov 2013 10:39:12 +0000 (+0000) Subject: add clean-phpdbg rule to Makefile.frag to aid development X-Git-Tag: php-5.6.0alpha1~110^2~294 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cb6af2cc1bfb0fc494001b42c711eb37532ec89;p=php add clean-phpdbg rule to Makefile.frag to aid development --- diff --git a/Makefile.frag b/Makefile.frag index 2a56b947f8..41e5cc1c5b 100644 --- a/Makefile.frag +++ b/Makefile.frag @@ -9,3 +9,8 @@ install-phpdbg: $(BUILD_BINARY) @$(mkinstalldirs) $(INSTALL_ROOT)$(localstatedir)/log @$(mkinstalldirs) $(INSTALL_ROOT)$(localstatedir)/run @$(INSTALL) -m 0755 $(BUILD_BINARY) $(INSTALL_ROOT)$(sbindir)/$(program_prefix)phpdbg$(program_suffix)$(EXEEXT) + +clean-phpdbg: + @echo "Cleaning phpdbg object files ..." + find sapi/phpdbg/ -name *.lo -o -name *.o | xargs rm -f +