From 2a819d0dfcb02ead63832a2ea5af79f90af82647 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 19 Jun 2005 22:23:12 +0000 Subject: r7761: Don't let phony targets cause a rebuild of the binaries. Thanks to tridge for the idea on how to do this. (This used to be commit fc099f24790367ea5b1e5e91085c9ddb8deb6dad) --- source4/build/smb_build/makefile.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/build/smb_build/makefile.pm') diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 97f570114d..bc38cfcf80 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -364,13 +364,14 @@ sub _prepare_objlist_rule($) $output = "$ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST = $tmpdepend\n"; - $output .= "$ctx->{TYPE}_$ctx->{NAME}: "; + $output .= "$ctx->{TARGET}: "; if (defined ($ctx->{TARGET_CFLAGS})) { $output .= "\n\t@\$(MAKE) TARGET_CFLAGS=\"" . join(' ', @{$ctx->{TARGET_CFLAGS}}) . "\" "; } $output .= "\$($ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST) \$($ctx->{TYPE}_$ctx->{NAME}_OBJS)\n"; + $output .= "\t\@touch $ctx->{TARGET}\n"; return $output; } -- cgit