diff options
author | Nico Huber <nico.huber@secunet.com> | 2015-10-22 13:34:06 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2015-10-22 23:02:40 +0200 |
commit | 37743a913fd77fd7ef6b4bb24fadecaea7b52429 (patch) | |
tree | ed26b2f2ceb1b8b34a5c6e7ff8e6e775d86fbbf8 | |
parent | 5e731a7cfc49db3fc3641f162e11882da09cb160 (diff) |
cbfstool/Makefile: Also rm fmd_(parser|scanner).[ch] in clean
Change-Id: I783aa4b2319aaedd57ce9a67ca935392a611298f
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: http://review.coreboot.org/12127
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | util/cbfstool/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index 796a182253..64db0b3164 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -12,6 +12,7 @@ all: $(objutil)/cbfstool/cbfstool \ .PHONY: clean clean: + $(RM) fmd_parser.c fmd_parser.h fmd_scanner.c fmd_scanner.h $(RM) $(objutil)/cbfstool/cbfstool $(cbfsobj) $(RM) $(objutil)/cbfstool/fmaptool $(fmapobj) $(RM) $(objutil)/cbfstool/rmodtool $(rmodobj) |