diff options
author | Martin Roth <martinroth@google.com> | 2016-03-07 16:40:14 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-03-11 17:56:47 +0100 |
commit | c3fbda4e73ff4d4470331a09779872d1973e0065 (patch) | |
tree | e8ba025258de45776b56e0723a1f2df03d807564 /payloads/nvramcui | |
parent | 3f1abb84e87704eac45570bdc89e786022c06678 (diff) |
nvramcui: Add distclean target
This doesn't do anything more than the clean target, but having both
clean and distclean targets in all makefiles makes standardizing the
cleaning routines easier.
Change-Id: I41578de371a8f767ee23266c30e65e928f0985c4
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/13939
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'payloads/nvramcui')
-rwxr-xr-x | payloads/nvramcui/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/payloads/nvramcui/Makefile b/payloads/nvramcui/Makefile index 73bcf781bf..10dc362ed5 100755 --- a/payloads/nvramcui/Makefile +++ b/payloads/nvramcui/Makefile @@ -8,3 +8,5 @@ all: nvramcui.elf .PHONY: clean: rm -f nvramcui.elf + +distclean: clean |