a22bfe1ab5
Date: Tue Apr 16 13:31:09 2019 -0700 Improve testing of configuration file timestamp * Provide a default value for each so that the comparisons of the time of each file doesn't fail. * Two commands in the Makefile could acceptably fail, but would produce some ugly warnings. Signed-off-by: Pierre Labastie <pierre.labastie@neuf.fr>
39 lines
948 B
Makefile
39 lines
948 B
Makefile
# $Id:
|
|
# 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>
|
|
# Manuel Canales Esparcia
|
|
# Pierre Labastie
|
|
|
|
TOPDIR=$(shell pwd)
|
|
CONFIG_CONFIG_IN = Config.in
|
|
CONFIG = menu
|
|
|
|
all: menuconfig
|
|
# @clear
|
|
@$$(grep RUN_ME configuration 2>/dev/null | sed -e 's@RUN_ME=\"@@' -e 's@\"@@')
|
|
|
|
$(CONFIG)/conf:
|
|
$(MAKE) -C $(CONFIG) conf
|
|
|
|
$(CONFIG)/mconf:
|
|
$(MAKE) -C $(CONFIG) ncurses conf mconf
|
|
|
|
menuconfig: $(CONFIG)/mconf
|
|
@cp -a configuration configuration.old 2>/dev/null || true
|
|
@$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
|
|
|
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
|