Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Fumiaki Kinoshita
GHC
Commits
2caf4c69
Commit
2caf4c69
authored
Dec 04, 1997
by
simonm
Browse files
[project @ 1997-12-04 12:18:41 by simonm]
add lengthy comment about recursive makes and failure.
parent
86a7358f
Changes
1
Hide whitespace changes
Inline
Side-by-side
mk/target.mk
View file @
2caf4c69
...
...
@@ -1004,6 +1004,18 @@ endif # if way
# No ways, so iterate over the SUBDIRS
# note about recursively invoking make: we'd like make to drop all the
# way back to the top level if it fails in any of the
# sub(sub-...)directories. This is done by setting the -e flag to the
# shell during the loop, which causes an immediate failure if any of
# the shell commands fail.
# One exception: if the user gave the -i or -k flag to make in the
# first place, we'd like to reverse this behaviour. So we check for
# these flags, and set the -e flag appropriately. NOTE: watch out for
# the --no-print-directory flag which is passed to recursive
# invocations of make.
ifeq
"$(way)" ""
ifneq
"$(SUBDIRS)" ""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment