additions to Makefile.. housekeeping in gen_pkg_book.sh

This commit is contained in:
George Boudreau 2006-08-22 01:06:59 +00:00
parent 02085702fe
commit 910206c592
2 changed files with 5 additions and 3 deletions

View file

@ -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)

View file

@ -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