diff options
author | Peter Stuge <peter@stuge.se> | 2008-07-02 03:03:58 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2008-07-02 03:03:58 +0000 |
commit | 1ae669771c916363023f01aae806f69dff35d81a (patch) | |
tree | de17aea6293f8b5c40fdabfa2f6055ce6873f8cc /util/flashrom/Makefile | |
parent | 39a582569a16b42588c69dc2b670d4b27cf71ee2 (diff) |
flashrom: Don't rm *~ in make clean, who knows what files that could be
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3404 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/Makefile')
-rw-r--r-- | util/flashrom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/flashrom/Makefile b/util/flashrom/Makefile index f6234f1518..b47d916822 100644 --- a/util/flashrom/Makefile +++ b/util/flashrom/Makefile @@ -46,7 +46,7 @@ flashrom.o: flashrom.c $(CC) -c $(CFLAGS) $(SVNDEF) $(CPPFLAGS) $< -o $@ clean: - rm -f $(PROGRAM) *.o *~ + rm -f $(PROGRAM) *.o distclean: clean rm -f .dependencies |