additions to Makefile.. housekeeping in gen_pkg_book.sh
This commit is contained in:
parent
02085702fe
commit
910206c592
2 changed files with 5 additions and 3 deletions
|
@ -6,7 +6,7 @@ TOPDIR=$(shell pwd)
|
||||||
CONFIG_CONFIG_IN = aConfig.in
|
CONFIG_CONFIG_IN = aConfig.in
|
||||||
CONFIG = menu
|
CONFIG = menu
|
||||||
|
|
||||||
all: menuconfig
|
all: menuconfig
|
||||||
|
|
||||||
$(CONFIG)/conf:
|
$(CONFIG)/conf:
|
||||||
$(MAKE) -C $(CONFIG) conf
|
$(MAKE) -C $(CONFIG) conf
|
||||||
|
@ -15,7 +15,9 @@ $(CONFIG)/mconf:
|
||||||
$(MAKE) -C $(CONFIG) ncurses conf mconf
|
$(MAKE) -C $(CONFIG) ncurses conf mconf
|
||||||
|
|
||||||
menuconfig: $(CONFIG)/mconf
|
menuconfig: $(CONFIG)/mconf
|
||||||
|
./gen_config.sh
|
||||||
@$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
@$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
||||||
|
./gen_pkg_book.sh
|
||||||
|
|
||||||
config: $(CONFIG)/conf
|
config: $(CONFIG)/conf
|
||||||
@$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
@$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
||||||
|
|
|
@ -74,8 +74,8 @@ done <$ConfigFile
|
||||||
#
|
#
|
||||||
# Replace to 'old' dependency file with a new one.
|
# Replace to 'old' dependency file with a new one.
|
||||||
#
|
#
|
||||||
for dst in libs/*.dep-MOD; do
|
for dst in `ls ./libs/*.dep-MOD 2>/dev/null`; do
|
||||||
cp -f $dst ${dst%-MOD}
|
cp -vf $dst ${dst%-MOD}
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue