Skip to content
Snippets Groups Projects
Commit 1d4e4c57 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

bugfix

Rev: src/modules/dynamic_module_makefile.in:1.37
Rev: src/modules/static_module_makefile.in:1.30
parent 1d7b373a
No related branches found
No related tags found
No related merge requests found
# #
# $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 ...@@ -15,7 +15,7 @@ MAKE_FLAGS = "prefix=$(prefix)" "exec_prefix=$(exec_prefix)" "CC=$(CC)" "OTHERFL
all: subdirs dummy all: subdirs dummy
subdirs: 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 dummy: $(DUMMY) linker_options modlist_headers modlist_segment module.so
@tmp="$(INSTALL_NAME)" ; \ @tmp="$(INSTALL_NAME)" ; \
......
# #
# $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 ...@@ -15,7 +15,7 @@ MAKE_FLAGS = "prefix=$(prefix)" "exec_prefix=$(exec_prefix)" "CC=$(CC)" "OTHERFL
all: subdirs dummy all: subdirs dummy
subdirs: 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 dummy: linker_options modlist_headers modlist_segment module.pmod module.a
@tmp="$(INSTALL_NAME)" ;\ @tmp="$(INSTALL_NAME)" ;\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment