From: krakjoe Date: Wed, 20 Nov 2013 15:27:35 +0000 (+0000) Subject: fix Makefile.frag on multicore builds ... possibly X-Git-Tag: php-5.6.0alpha1~110^2~168 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53cddbca333baa8fedc7545b274f34c0790078e2;p=php fix Makefile.frag on multicore builds ... possibly --- diff --git a/Makefile.frag b/Makefile.frag index becd867a0d..5482a9e7fb 100644 --- a/Makefile.frag +++ b/Makefile.frag @@ -1,4 +1,4 @@ -phpdbg: clean-phpdbg $(BUILD_BINARY) +phpdbg: $(BUILD_BINARY) $(BUILD_BINARY): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_PHPDBG_OBJS) $(BUILD_PHPDBG) @@ -14,3 +14,6 @@ clean-phpdbg: @echo "Cleaning phpdbg object files ..." find sapi/phpdbg/ -name *.lo -o -name *.o | xargs rm -f +.PHONY: clean-phpdbg + +