Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
817dd925
Commit
817dd925
authored
Jan 18, 2016
by
Simon Marlow
Browse files
Fixes to "make clean" for the iserv dir
parent
54128992
Changes
2
Hide whitespace changes
Inline
Side-by-side
ghc.mk
View file @
817dd925
...
...
@@ -670,7 +670,7 @@ BUILD_DIRS += utils/mkUserGuidePart
BUILD_DIRS
+=
docs/users_guide
BUILD_DIRS
+=
utils/count_lines
BUILD_DIRS
+=
utils/compare_sizes
ifeq
"$(Windows_Host)" "
NO
"
if
n
eq
"$(Windows_Host)" "
YES
"
BUILD_DIRS
+=
iserv
endif
...
...
iserv/ghc.mk
View file @
817dd925
...
...
@@ -54,11 +54,31 @@ iserv_stage2_dyn_INSTALL_INPLACE = YES
$(eval
$(call
build-prog,iserv,stage2,1))
ifeq
"$(CLEANING)" "YES"
NEED_iserv_p
=
YES
NEED_iserv_dyn
=
YES
else
ifneq
"$(findstring p, $(GhcLibWays))" ""
$(eval
$(call
build-prog,iserv,stage2_p,1))
NEED_iserv_p
=
YES
else
NEED_iserv_p
=
NO
endif
ifneq
"$(findstring dyn, $(GhcLibWays))" ""
NEED_iserv_dyn
=
YES
else
NEED_iserv_dyn
=
NO
endif
endif
ifeq
"$(NEED_iserv_p)" "YES"
$(eval
$(call
build-prog,iserv,stage2_p,1))
endif
ifeq
"$(NEED_iserv_dyn)" "YES"
$(eval
$(call
build-prog,iserv,stage2_dyn,1))
endif
...
...
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