BLFS: Be sure that the menu/mconf binary is rebuild each time.

This commit is contained in:
Manuel Canales Esparcia 2007-07-26 20:01:43 +00:00
parent 4a33ef0ae6
commit a06975772a

View file

@ -11,10 +11,10 @@ CONFIG = menu
all: menuconfig all: menuconfig
$(CONFIG)/conf: $(CONFIG)/conf:
$(MAKE) -C $(CONFIG) conf $(MAKE) -B -C $(CONFIG) conf
$(CONFIG)/mconf: $(CONFIG)/mconf:
$(MAKE) -C $(CONFIG) ncurses conf mconf $(MAKE) -B -C $(CONFIG) ncurses conf mconf
menuconfig: $(CONFIG)/mconf menuconfig: $(CONFIG)/mconf
@./update_book.sh none @./update_book.sh none
@ -35,4 +35,4 @@ clean-target:
rm -f error rm -f error
- $(MAKE) -C $(CONFIG) clean - $(MAKE) -C $(CONFIG) clean
.PHONY: all menuconfig config clean clean-target .PHONY: all menuconfig config clean clean-target $(CONFIG)/conf $(CONFIG)/mconf