diff options
author | Martin Roth <martinroth@google.com> | 2016-03-03 12:11:47 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-03-04 16:17:10 +0100 |
commit | ca55f0a0eaaf92e75345e22791e37af0cf7034f4 (patch) | |
tree | edd163a89637dc5922906103b63e614a7d5c20ca /util | |
parent | 8198c678f7a7b1e3fbb44190903768397951e1f9 (diff) |
util/futility: trivial - Add distclean target
The what-jenkins-does build runs distclean when building the utilities.
It doesn't fail the build if distclean fails, but it generates a
scary warning.
Change-Id: Iac90958951976ed326a89ef2b5f2d9f17f9f2d6b
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/13888
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r-- | util/futility/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/futility/Makefile b/util/futility/Makefile index 3ce45ed1ee..f00e2eb975 100644 --- a/util/futility/Makefile +++ b/util/futility/Makefile @@ -12,6 +12,8 @@ clean: $(RM) $(objutil)/futility/futility $(RM) -r $(objutil)/futility/build +distclean: clean + ifneq ($(V),1) ifneq ($(Q),) .SILENT: |