add distclean target

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@117 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Stefan Reinauer 2007-02-25 13:36:37 +00:00
commit ff6ca16f4a

View file

@ -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 $<