summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-07-07 10:49:48 -0600
committerMartin Roth <martinroth@google.com>2017-07-08 19:02:26 +0000
commit1d721ed08bc7aff6838fda431a53f7a20c2f2b70 (patch)
tree0f4f53187cb8d42ab13fc3ba78b477189dd93eb5 /Makefile
parent96734f1b45b91e2b872602d9c29548c35fce987b (diff)
downloadcoreboot-1d721ed08bc7aff6838fda431a53f7a20c2f2b70.tar.gz
coreboot-1d721ed08bc7aff6838fda431a53f7a20c2f2b70.tar.bz2
coreboot-1d721ed08bc7aff6838fda431a53f7a20c2f2b70.zip
Makefile: update clean-utils & distclean-utils
Distclean-utils target was missing a backslash at the end to continue on the next line. Change-Id: I2bddff342f9c0fcb27e9b40ac94377c60ba5b7fe Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/20494 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 87576c8b3a27..31fb3ad6f165 100644
--- a/Makefile
+++ b/Makefile
@@ -417,10 +417,12 @@ clean-ctags:
rm -f tags
clean-utils:
- $(foreach tool, $(TOOLLIST), $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;)
+ $(foreach tool, $(TOOLLIST), \
+ $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;)
distclean-utils:
- $(foreach tool, $(TOOLLIST), $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ;
+ $(foreach tool, $(TOOLLIST), \
+ $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ; \
rm -f /util/$(tool)/junit.xml;)
distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils