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
86a7358f
Commit
86a7358f
authored
Dec 04, 1997
by
simonm
Browse files
[project @ 1997-12-04 12:13:45 by simonm]
fix the set -e business again. I could have sworn I'd already done this.
parent
e8c534f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
mk/target.mk
View file @
86a7358f
...
...
@@ -1012,7 +1012,7 @@ all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
@
echo
"===fptools== Recursively making
\`
$@
' in
$(SUBDIRS)
..."
@
echo
"PWD =
$(
shell
pwd
)
"
@
echo
"------------------------------------------------------------------------"
@
case
'
${MFLAGS}
'
in
-
*
[
ik]
*
)
set
+e
;;
*
)
set
-e
;;
esac
;
\
@
case
'
${MFLAGS}
'
in
*
-
[ik]
*
)
set
+e
;;
*
)
set
-e
;;
esac
;
\
for
i
in
$(SUBDIRS)
;
do
\
echo
"------------------------------------------------------------------------"
;
\
echo
"==fptools==
$(MAKE)
$@
;"
;
\
...
...
@@ -1026,7 +1026,7 @@ all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
@
echo
"------------------------------------------------------------------------"
dist
::
@
case
'
${MFLAGS}
'
in
-
*
[
ik]
*
)
set
+e
;;
*
)
set
-e
;;
esac
;
\
@
case
'
${MFLAGS}
'
in
*
-
[ik]
*
)
set
+e
;;
*
)
set
-e
;;
esac
;
\
for
i
in
$(SUBDIRS)
;
do
\
$(MKDIRHIER_PREFIX)
mkdirhier
$(SRC_DIST_DIR)
/
$$
i
;
\
$(MAKE)
-C
$$
i
$(MFLAGS)
$@
SRC_DIST_DIR
=
$(SRC_DIST_DIR)
/
$$
i
;
\
...
...
@@ -1054,7 +1054,7 @@ all docs runtests TAGS clean veryclean maintainer-clean install ::
@
echo
"===fptools== Recursively making
\`
$@
' for ways:
$(WAYS)
..."
@
echo
"PWD =
$(
shell
pwd
)
"
@
echo
"------------------------------------------------------------------------"
@
case
'
${MFLAGS}
'
in
-
*
[
ik]
*
)
set
+e
;;
*
)
set
-e
;;
esac
;
\
@
case
'
${MFLAGS}
'
in
*
-
[ik]
*
)
set
+e
;;
*
)
set
-e
;;
esac
;
\
for
i
in
$(WAYS)
;
do
\
echo
"------------------------------------------------------------------------"
;
\
echo
"==fptools==
$(MAKE)
way=
$$
i
$@
;"
;
\
...
...
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