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
This commit is contained in:
Stefan Reinauer 2008-06-22 17:15:03 +00:00 committed by Stefan Reinauer
parent b05b6a2555
commit 8b835974cd
1 changed files with 2 additions and 2 deletions

View File

@ -35,10 +35,10 @@ $(PROGRAM): $(OBJS)
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS) $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
clean: clean:
rm -f *.o *~ rm -f $(PROGRAM) *.o *~
distclean: clean distclean: clean
rm -f $(PROGRAM) .dependencies rm -f .dependencies
dep: dep:
@$(CC) -MM *.c > .dependencies @$(CC) -MM *.c > .dependencies