-
Notifications
You must be signed in to change notification settings - Fork 23
/
ghc.mk
59 lines (42 loc) · 1.89 KB
/
ghc.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
utils/hsc2hs_USES_CABAL = YES
utils/hsc2hs_PACKAGE = hsc2hs
utils/hsc2hs_dist_PROGNAME = hsc2hs
utils/hsc2hs_dist-install_PROGNAME = hsc2hs
utils/hsc2hs_dist_SHELL_WRAPPER = YES
utils/hsc2hs_dist_INSTALL_INPLACE = YES
utils/hsc2hs_dist-install_SHELL_WRAPPER = YES
utils/hsc2hs_dist-install_INSTALL_INPLACE = NO
ifeq "$(Stage1Only)" "YES"
utils/hsc2hs_dist_INSTALL = YES
utils/hsc2hs_dist-install_INSTALL = NO
else
utils/hsc2hs_dist_INSTALL = NO
utils/hsc2hs_dist-install_INSTALL = YES
endif
$(eval $(call build-prog,utils/hsc2hs,dist,0))
$(eval $(call build-prog,utils/hsc2hs,dist-install,1))
# After build-prog above
utils/hsc2hs_dist-install_MODULES = $(utils/hsc2hs_dist_MODULES)
utils/hsc2hs_template=$(INPLACE_TOPDIR)/template-hsc.h
# Here we encode the cc and linker options into the wrapper for the released
# hsc2hs binary using a HSC2HS_EXTRA variable.
# For the stage0 wrapper (built in dist), we don't do this, because the build
# system uses it for all stages and passes the right options for each stage
# on the command line
define utils/hsc2hs_dist-install_SHELL_WRAPPER_EXTRA
echo 'HSC2HS_EXTRA="$(addprefix --cflag=,$(CONF_CC_OPTS_STAGE1)) $(addprefix --lflag=,$(CONF_GCC_LINKER_OPTS_STAGE1))"' >> "$(WRAPPER)"
endef
ifneq "$(BINDIST)" "YES"
$(hsc2hs_INPLACE) : | $(utils/hsc2hs_template)
# When invoked in the source tree, hsc2hs will try to link in
# extra-libs from the packages, including libgmp.a. So we need a
# dependency to ensure these libs are built before we invoke hsc2hs:
$(hsc2hs_INPLACE) : $(OTHER_LIBS)
$(utils/hsc2hs_template) : utils/hsc2hs/data/template-hsc.h | $$(dir $$@)/.
"$(CP)" $< $@
endif
install: install_utils/hsc2hs_dist_install
.PHONY: install_utils/hsc2hs_dist_install
install_utils/hsc2hs_dist_install: utils/hsc2hs/data/template-hsc.h
$(INSTALL_HEADER) $(INSTALL_OPTS) $< "$(DESTDIR)$(topdir)"
BINDIST_EXTRAS += utils/hsc2hs/data/template-hsc.h