Skip to content
Snippets Groups Projects
Commit 6bd087b2 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

OBJS should be rebuilt if with-dynamic-modules toggles.

Rev: src/modules/dynamic_module_makefile.in:1.54
Rev: src/modules/static_module_makefile.in:1.49
parent 348fcabd
No related branches found
No related tags found
No related merge requests found
#
# $Id: dynamic_module_makefile.in,v 1.53 1999/04/23 21:31:50 grubba Exp $
# $Id: dynamic_module_makefile.in,v 1.54 1999/05/29 17:52:19 grubba Exp $
#
......@@ -63,6 +63,8 @@ module.so: $(OBJS) $(MODULE_ARCHIVES)
$(TMP_BINDIR)/smartlink "@LDSHARED@" $(LDFLAGS) -o module.@SO@ $(OBJS) $(MODULE_ARCHIVES) $(MODULE_LDFLAGS) $(LIBGCC) -lc $(LIBGCC)
if test @SO@ != so ; then mv module.@SO@ module.so ; else :; fi
$(OBJS) : $(MODULE_BASE)/dynamic_module_makefile
clean:
-rm -f *.o *.a *.so module.so linker_options modlist_headers modlist_segment module_testsuite
for a in '' $(MODULE_SUBDIRS) ; do if test "x$$a" = "x"; then :; else echo cleaning $$a ; ( cd $$a ; $(MAKE) $(MAKE_FLAGS) clean ) ; fi ; done
......
#
# $Id: static_module_makefile.in,v 1.48 1999/04/23 21:31:28 grubba Exp $
# $Id: static_module_makefile.in,v 1.49 1999/05/29 17:52:26 grubba Exp $
#
......@@ -85,6 +85,8 @@ module.a: $(OBJS)
-@RANLIB@ module.a
if test -f linker_options ; then touch linker_options ; else :; fi
$(OBJS) : $(MODULE_BASE)/dynamic_module_makefile
clean:
-rm -f *.o *.a *.so module.so module.pmod linker_options modlist_headers modlist_segment module_testsuite
for a in '' $(MODULE_SUBDIRS) ; do if test "x$$a" = "x"; then :; else echo cleaning $$a ; ( cd $$a ; $(MAKE) $(MAKE_FLAGS) clean ) ; fi ; done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment