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 = menu
|
||||
|
||||
all: menuconfig
|
||||
all: menuconfig
|
||||
|
||||
$(CONFIG)/conf:
|
||||
$(MAKE) -C $(CONFIG) conf
|
||||
|
@ -15,7 +15,9 @@ $(CONFIG)/mconf:
|
|||
$(MAKE) -C $(CONFIG) ncurses conf mconf
|
||||
|
||||
menuconfig: $(CONFIG)/mconf
|
||||
./gen_config.sh
|
||||
@$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
||||
./gen_pkg_book.sh
|
||||
|
||||
config: $(CONFIG)/conf
|
||||
@$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
||||
|
|
|
@ -74,8 +74,8 @@ done <$ConfigFile
|
|||
#
|
||||
# Replace to 'old' dependency file with a new one.
|
||||
#
|
||||
for dst in libs/*.dep-MOD; do
|
||||
cp -f $dst ${dst%-MOD}
|
||||
for dst in `ls ./libs/*.dep-MOD 2>/dev/null`; do
|
||||
cp -vf $dst ${dst%-MOD}
|
||||
done
|
||||
|
||||
|
||||
|
|
Reference in a new issue