util/cbmem/Makefile: Remove .dependencies on `clean`
Change-Id: Ic122b3eaed54e29bbb3e11de84822169c81c04eb Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/28928 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
fa6ff60c8c
commit
e3c05c4a3f
|
@ -30,14 +30,13 @@ all: $(PROGRAM)
|
||||||
$(PROGRAM): $(OBJS)
|
$(PROGRAM): $(OBJS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(PROGRAM) *.o *~ junit.xml
|
rm -f $(PROGRAM) *.o .dependencies *~ junit.xml
|
||||||
|
|
||||||
install: $(PROGRAM)
|
install: $(PROGRAM)
|
||||||
$(INSTALL) -d $(DESTDIR)$(PREFIX)/sbin/
|
$(INSTALL) -d $(DESTDIR)$(PREFIX)/sbin/
|
||||||
$(INSTALL) cbmem $(DESTDIR)$(PREFIX)/sbin/
|
$(INSTALL) cbmem $(DESTDIR)$(PREFIX)/sbin/
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f .dependencies
|
|
||||||
|
|
||||||
.dependencies:
|
.dependencies:
|
||||||
@$(CC) $(CFLAGS) $(CPPFLAGS) -MM *.c > .dependencies
|
@$(CC) $(CFLAGS) $(CPPFLAGS) -MM *.c > .dependencies
|
||||||
|
|
Loading…
Reference in New Issue