Set the soname when creating a shared lib
[ghc-hetmet.git] / rules / build-package.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13
14 # Build a package with the stage-1 compiler, multiple ways.  A typical
15 # libraries/foo/ghc.mk will look like this:
16 #
17 # $(eval $(call build-package,libraries/base,dist-install))
18 #
19 # The package metadata is generated from the .cabal file and placed in
20 # package-data.mk.  It will look something like this:
21 #
22 # libraries/base_dist_MODULES = GHC.Base Data.Tuple ...
23 # libraries/base_dist_PACKAGE = base
24 # libraries/base_dist_VERSION = 4.0.0.0
25 # libraries/base_dist_HC_OPTS = -package ghc-prim-0.1.0.0 -XRank2Types ...
26 # libraries/base_dist_C_SRCS  = cbits/PrelIOUtils.c ...
27 # libraries/base_dist_S_SRCS  = cbits/foo.S ...
28 # libraries/base_dist_CC_OPTS = -Iinclude ...
29 # libraries/base_dist_LD_OPTS = -package ghc-prim-0.1.0.0
30
31 define build-package
32 # $1 = dir
33 # $2 = distdir
34 # $3 = GHC stage to use (0 == bootstrapping compiler)
35
36 ifeq "$$(findstring $3,0 1 2)" ""
37 $$(error $1/$2: stage argument to build-package should be 0, 1, or 2)
38 endif
39
40 # We don't install things compiled by stage 0, so no need to put them
41 # in the bindist.
42 ifneq "$(BINDIST) $3" "YES 0"
43
44 $(call all-target,$1,all_$1_$2)
45 # This give us things like
46 #     all_libraries: all_libraries/base_dist-install
47 ifneq "$$($1_$2_GROUP)" ""
48 all_$$($1_$2_GROUP): all_$1_$2
49 endif
50
51 $(call clean-target,$1,$2,$1/$2)
52
53 distclean : clean_$1_$2_config
54
55 maintainer-clean : distclean
56
57 .PHONY: clean_$1_$2_config
58 clean_$1_$2_config:
59         $(RM) $1/config.log $1/config.status $1/include/Hs*Config.h
60         $(RM) -r $1/autom4te.cache
61
62 # --- CONFIGURATION
63
64 $1_$2_USE_BOOT_LIBS = YES
65 $(call package-config,$1,$2,$3)
66
67 ifneq "$$(NO_INCLUDE_PKGDATA)" "YES"
68 include $1/$2/package-data.mk
69 endif
70
71 ifeq "$$($1_$2_DISABLE)" "YES"
72
73 ifeq "$$(DEBUG)" "YES"
74 $$(warning $1/$2 disabled)
75 endif
76
77 # A package is disabled when we want to bring its package-data.mk file
78 # up-to-date first, or due to other build dependencies.
79
80 $(call all-target,$1_$2,$1/$2/package-data.mk)
81
82 ifneq "$(BINDIST)" "YES"
83 # We have a rule for package-data.mk only when the package is
84 # disabled, because we want the build to fail if we haven't run phase 0.
85 $(call build-package-data,$1,$2)
86 endif
87
88 else
89
90 ifneq "$$(NO_INCLUDE_PKGDATA)" "YES"
91 ifeq "$$($1_$2_VERSION)" ""
92 $$(error phase ordering error: $1/$2 is enabled, but $1/$2/package-data.mk does not exist)
93 endif
94 endif
95
96 # Sometimes we need to modify the automatically-generated package-data.mk
97 # bindings in a special way for the GHC build system, so allow that here:
98 $($1_PACKAGE_MAGIC)
99
100 # Bootstrapping libs are only built one way
101 ifeq "$3" "0"
102 $1_$2_WAYS = v
103 else
104 $1_$2_WAYS = $$(GhcLibWays)
105 endif
106
107 $(call hs-sources,$1,$2)
108 $(call c-sources,$1,$2)
109 $(call includes-sources,$1,$2)
110
111 # --- DEPENDENCIES
112
113 # We must use a different dependency file if $(GhcLibWays) changes, so
114 # encode the ways into the name of the file.
115 $1_$2_WAYS_DASHED = $$(subst $$(space),,$$(patsubst %,-%,$$(strip $$($1_$2_WAYS))))
116 $1_$2_depfile = $1/$2/build/.depend$$($1_$2_WAYS_DASHED)
117
118 $(call build-dependencies,$1,$2)
119
120 # --- BUILDING
121
122 # We don't bother splitting the bootstrap packages (built with stage 0)
123 ifeq "$$($1_$2_SplitObjs)" ""
124 ifeq "$$(SplitObjs) $3" "YES 1"
125 $1_$2_SplitObjs = YES
126 else
127 $1_$2_SplitObjs = NO
128 endif
129 endif
130
131 # C and S files are built the "v" vanlilla way and possibly also the "dyn" way.
132 $(call c-objs,$1,$2,v)
133 $(call distdir-opts,$1,$2,$3)
134 $(call c-suffix-rules,$1,$2,v,YES)
135 ifeq "$(BuildSharedLibs)" "YES"
136 $(call c-objs,$1,$2,dyn)
137 $(call c-suffix-rules,$1,$2,dyn,YES)
138 endif
139
140 # Now generate all the build rules for each way in this directory:
141 $$(foreach way,$$($1_$2_WAYS),$$(eval $$(call build-package-way,$1,$2,$$(way),$3)))
142
143 $(call haddock,$1,$2)
144
145 endif # package-data.mk exists
146
147 # Don't put bootstrapping packages in the bindist
148 ifneq "$3" "0"
149 BINDIST_EXTRAS += $1/*.cabal $1/$2/setup-config $1/LICENSE
150 BINDIST_EXTRAS += $$($1_$2_INSTALL_INCLUDES_SRCS)
151 endif
152
153 endif
154
155 endef
156