Quickfix to repair 'make clean; make menuconfig' (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3297 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Uwe Hermann 2008-05-11 15:51:31 +00:00
parent cd0b5631de
commit 134aaaec50
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ include $(src)/.config
all: prepare $(TARGET)
$(TARGET): $(OBJS)
$(TARGET): $(src)/.config $(OBJS)
$(Q)printf " LD $(subst $(shell pwd)/,,$(@))\n"
$(Q)$(CC) -o $@ $(OBJS)
$(Q)printf " STRIP $(subst $(shell pwd)/,,$(@))\n"
@ -85,7 +85,7 @@ prepare:
$(Q)mkdir -p $(obj)/util/kconfig/lxdialog
clean:
$(Q)rm -rf build/util build/*.conf build/*.cmd build/*.elf build/*.o
$(Q)rm -rf build/*.elf build/*.o
distclean: clean
$(Q)rm -rf build