From ff6ca16f4a74073609561303d49d8a84181790e0 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sun, 25 Feb 2007 13:36:37 +0000 Subject: [PATCH] add distclean target Signed-off-by: Stefan Reinauer Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@117 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index cbda0ad7fb..932e9a1cab 100644 --- a/Makefile +++ b/Makefile @@ -96,6 +96,10 @@ clean: $(Q)echo "Cleaning up..." $(Q)rm -rf $(obj) +distclean: clean + $(Q)echo "Deleting config files..." + $(Q)rm -f .kconfig.d .config .tmpconfig.h .config.old + %.o: %.c $(Q)echo "Compiling $<" $(Q)$(CC) $(CFLAGS) -o $@ -c $<