diff --git a/src/modules/Makefile.in b/src/modules/Makefile.in index 9d30b364e3336c55c6bdc96eb9e07b34f462b634..4b9b58ee2604917c5fdf827f94ac54bb54c4a7e2 100644 --- a/src/modules/Makefile.in +++ b/src/modules/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.48 2003/12/07 16:14:34 marcus Exp $ +# $Id: Makefile.in,v 1.49 2004/05/01 12:53:44 mast Exp $ @make_variables@ @@ -14,7 +14,7 @@ force: @: $(MODULES): Makefile force - @echo Making $@; \ + @echo Making modules/$@; \ ( cd $@ && \ ( rm remake >/dev/null 2>&1 || : ) && \ ( $(MAKE) $(MAKE_FLAGS) || \ @@ -85,7 +85,7 @@ spotless: clean_here verify: @for a in $(MODULES) ; do \ ( cd $$a && \ - echo verifying $$a && \ + echo Verifying $$a && \ ${MAKE} $(MAKE_FLAGS) verify \ ) || exit $$? ; \ done @@ -99,7 +99,7 @@ verbose_verify: fdtestsuites: @for a in $(MODULES) ; do \ - echo $$a ; \ + echo Making testsuite in $$a ; \ $(TMP_BINDIR)/mktestsuite $(SRCDIR)/$$a/testsuite.in >$$a/testsuite -DSRCDIR=$(SRCDIR)/$$a || exit $$? ; \ done diff --git a/src/modules/common_module_makefile.in b/src/modules/common_module_makefile.in index 05adcb7154495c191f8398c1ed33b333eceeec66..0071984afb8b57e7c2d3ecb8542eec05c1e3161e 100644 --- a/src/modules/common_module_makefile.in +++ b/src/modules/common_module_makefile.in @@ -1,5 +1,5 @@ # -# $Id: common_module_makefile.in,v 1.28 2004/04/17 16:00:41 marcus Exp $ +# $Id: common_module_makefile.in,v 1.29 2004/05/01 12:53:44 mast Exp $ # # Contains stuff common to both dynamic_module_makefile and # static_module_makefile. @@ -151,7 +151,7 @@ depend: $(SRC_TARGETS) $(PMOD_TARGETS) Makefile @CONFIG_FILES=Makefile CONFIG_HEADERS="" ./config.status @for a in '' $(MODULE_SUBDIRS) ; do \ if test "x$$a" = "x"; then :; else \ - echo making depend in $$a; \ + echo Making depend in $$a; \ ( cd $$a && { \ rm -f remake; \ $(MAKE) $(MAKE_FLAGS) depend || \ diff --git a/src/post_modules/Makefile.in b/src/post_modules/Makefile.in index 9a34f4ba57192314c495ec04ef18e17baf291b2e..157ad803b801a83ab1b6658a1d8d952f4b0c0121 100644 --- a/src/post_modules/Makefile.in +++ b/src/post_modules/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.13 2003/12/07 16:14:34 marcus Exp $ +# $Id: Makefile.in,v 1.14 2004/05/01 12:53:44 mast Exp $ @make_variables@ @@ -15,7 +15,7 @@ force: $(MODULES) no : force @if [ "$@" = "no" ]; then :; else \ - echo Making $@; \ + echo Making post_modules/$@; \ ( cd $@ && \ ( rm remake >/dev/null 2>&1 || : ) && \ ( $(MAKE) $(MAKE_FLAGS) || \