diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-06-22 17:15:03 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-06-22 17:15:03 +0000 |
commit | 8b835974cd381b398ae0d5fbd6b7c789ebfd4e39 (patch) | |
tree | bc20fb3ea473d1bf524c27cf3c6240f60ef388ab /util | |
parent | b05b6a2555e04e3af2f62014d373aef64e0e469f (diff) |
as per Peter's suggestion. clean binary in make clean
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3383 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r-- | util/inteltool/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/inteltool/Makefile b/util/inteltool/Makefile index fe124e89d4..d1a8b21880 100644 --- a/util/inteltool/Makefile +++ b/util/inteltool/Makefile @@ -35,10 +35,10 @@ $(PROGRAM): $(OBJS) $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS) clean: - rm -f *.o *~ + rm -f $(PROGRAM) *.o *~ distclean: clean - rm -f $(PROGRAM) .dependencies + rm -f .dependencies dep: @$(CC) -MM *.c > .dependencies |