Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
cbc627e3
Commit
cbc627e3
authored
May 19, 2009
by
Simon Marlow
Browse files
allow phases to be omitted by setting OMIT_PHASE_[123]=YES
parent
2e0498a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
cbc627e3
...
...
@@ -56,12 +56,18 @@ REALGOALS=$(filter-out bootstrapping-files framework-pkg clean clean_% distclean
$(REALGOALS) all
:
$(PACKAGE_MK)
@
echo
"===--- updating makefiles phase 0"
$(MAKE)
-r
--no-print-directory
-f
ghc.mk
phase
=
0 just-makefiles
ifneq
"$(OMIT_PHASE_1)" "YES"
@
echo
"===--- updating makefiles phase 1"
$(MAKE)
-r
--no-print-directory
-f
ghc.mk
phase
=
1 just-makefiles
endif
ifneq
"$(OMIT_PHASE_2)" "YES"
@
echo
"===--- updating makefiles phase 2"
$(MAKE)
-r
--no-print-directory
-f
ghc.mk
phase
=
2 just-makefiles
endif
ifneq
"$(OMIT_PHASE_3)" "YES"
@
echo
"===--- updating makefiles phase 3"
$(MAKE)
-r
--no-print-directory
-f
ghc.mk
phase
=
3 just-makefiles
endif
@
echo
"===--- finished updating makefiles"
$(MAKE)
-r
--no-print-directory
-f
ghc.mk
$@
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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