diff --git a/src/modules/dynamic_module_makefile.in b/src/modules/dynamic_module_makefile.in index 0fff5e68233c50cf07e011c1f268df2a4aae03df..4f950de15c57f64fa1a9649f6ca159b3371ea276 100644 --- a/src/modules/dynamic_module_makefile.in +++ b/src/modules/dynamic_module_makefile.in @@ -1,5 +1,5 @@ # -# $Id: dynamic_module_makefile.in,v 1.36 1998/04/30 02:39:23 hubbe Exp $ +# $Id: dynamic_module_makefile.in,v 1.37 1998/05/01 15:32:49 hubbe Exp $ # @@ -15,7 +15,7 @@ MAKE_FLAGS = "prefix=$(prefix)" "exec_prefix=$(exec_prefix)" "CC=$(CC)" "OTHERFL all: subdirs dummy subdirs: - @for a in '' $(MODULE_SUBDIRS) ; do if test ! -z "$$a"; then echo Making $(MODNAME)/$$a ; ( rm $$a/remake >/dev/null 2>&1 ||: ; cd $$a && ( $(MAKE) $(MAKE_FLAGS) || ( test -f remake $(MAKE) $(MAKE_FLAGS) ) ) ) || exit $$? ; else :; fi ; done + @for a in '' $(MODULE_SUBDIRS) ; do if test ! -z "$$a"; then echo Making $(MODNAME)/$$a ; ( rm $$a/remake >/dev/null 2>&1 ||: ; cd $$a && ( $(MAKE) $(MAKE_FLAGS) || ( test -f remake ; $(MAKE) $(MAKE_FLAGS) ) ) ) || exit $$? ; else :; fi ; done dummy: $(DUMMY) linker_options modlist_headers modlist_segment module.so @tmp="$(INSTALL_NAME)" ; \ diff --git a/src/modules/static_module_makefile.in b/src/modules/static_module_makefile.in index 9cc72dcc9534632c4ae1baabd656e2fad242d2ee..df4847767aa5bb6a493dbee10acad4853191ed4f 100644 --- a/src/modules/static_module_makefile.in +++ b/src/modules/static_module_makefile.in @@ -1,5 +1,5 @@ # -# $Id: static_module_makefile.in,v 1.29 1998/04/30 02:39:24 hubbe Exp $ +# $Id: static_module_makefile.in,v 1.30 1998/05/01 15:32:49 hubbe Exp $ # @@ -15,7 +15,7 @@ MAKE_FLAGS = "prefix=$(prefix)" "exec_prefix=$(exec_prefix)" "CC=$(CC)" "OTHERFL all: subdirs dummy subdirs: - @for a in '' $(MODULE_SUBDIRS) ; do if test ! -z "$$a"; then echo Making $(MODNAME)/$$a ; ( rm $$a/remake >/dev/null 2>&1 ||: ; cd $$a && ( $(MAKE) $(MAKE_FLAGS) || ( test -f remake $(MAKE) $(MAKE_FLAGS) ) ) ) || exit $$? ; else :; fi ; done + @for a in '' $(MODULE_SUBDIRS) ; do if test ! -z "$$a"; then echo Making $(MODNAME)/$$a ; ( rm $$a/remake >/dev/null 2>&1 ||: ; cd $$a && ( $(MAKE) $(MAKE_FLAGS) || ( test -f remake ; $(MAKE) $(MAKE_FLAGS) ) ) ) || exit $$? ; else :; fi ; done dummy: linker_options modlist_headers modlist_segment module.pmod module.a @tmp="$(INSTALL_NAME)" ;\