MahiroOS-jhalfs/BLFS/Makefile

39 lines
778 B
Makefile
Raw Normal View History

2006-08-24 22:38:22 +02:00
# From the Build Scripts Written By: Jim Gifford <lfs@jg555.com>
# Modified By: Joe Ciccone <jciccone@linuxfromscratch.org
# Additional changes: George Boudreau <georgeb@linuxfromscratch.org>
# $Id$
TOPDIR=$(shell pwd)
CONFIG_CONFIG_IN = Config.in
CONFIG = menu
all: menuconfig
$(CONFIG)/conf:
2007-07-06 03:50:14 +02:00
$(MAKE) -C $(CONFIG) conf
2006-08-24 22:38:22 +02:00
$(CONFIG)/mconf:
2007-07-06 03:50:14 +02:00
$(MAKE) -C $(CONFIG) ncurses conf mconf
2006-08-24 22:38:22 +02:00
menuconfig: $(CONFIG)/mconf
@./update_book.sh none
@./gen_config.sh
@$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
@./gen_pkg_book.sh
config: $(CONFIG)/conf
@$(CONFIG)/conf $(CONFIG_CONFIG_IN)
# Clean up
clean:
rm -f configuration configuration.old error
- $(MAKE) -C $(CONFIG) clean
clean-target:
rm -f error
- $(MAKE) -C $(CONFIG) clean
.PHONY: all menuconfig config clean clean-target