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

Some make's don't like empty targets without actions.

Rev: src/modules/dynamic_module_makefile.in:1.51
Rev: src/modules/static_module_makefile.in:1.46
parent dd216541
Branches
Tags
No related merge requests found
#
# $Id: dynamic_module_makefile.in,v 1.50 1999/03/26 19:28:05 hubbe Exp $
# $Id: dynamic_module_makefile.in,v 1.51 1999/03/26 21:26:10 grubba Exp $
#
......@@ -24,6 +24,7 @@ MAKE_FLAGS = "prefix=$(prefix)" "exec_prefix=$(exec_prefix)" "CC=$(CC) @CCSHARED
all: dummy
force:
@:;
$(MODULE_ARCHIVES) ThisIsAPhonyTargetBlaBlaBla: force
@a=`echo $@ | sed -e 's@/[^/]*$$@@'` ; echo Making $(MODNAME)/$$a ; ( rm $$a/remake >/dev/null 2>&1 ||: ; cd $$a && ( $(MAKE) $(MAKE_FLAGS) || ( test -f remake ; $(MAKE) $(MAKE_FLAGS) ) ) ) || exit $$?
......
#
# $Id: static_module_makefile.in,v 1.45 1999/03/26 19:28:06 hubbe Exp $
# $Id: static_module_makefile.in,v 1.46 1999/03/26 21:27:32 grubba Exp $
#
......@@ -22,6 +22,7 @@ MAKE_FLAGS = "prefix=$(prefix)" "exec_prefix=$(exec_prefix)" "CC=$(CC)" "OTHERFL
all: dummy
force:
@:;
$(MODULE_ARCHIVES) ThisIsAPhonyTargetBlaBlaBla: force
@a=`echo $@ | sed -e 's@/[^/]*$$@@'` ; echo Making $(MODNAME)/$$a ; ( rm $$a/remake >/dev/null 2>&1 ||: ; cd $$a && ( $(MAKE) $(MAKE_FLAGS) || ( test -f remake ; $(MAKE) $(MAKE_FLAGS) ) ) ) || exit $$?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment