Add a header to all build system files:
[ghc-hetmet.git] / rules / build-package-way.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 define build-package-way # $1 = dir, $2 = distdir, $3 = way, $4 = stage
15
16 $(call distdir-way-opts,$1,$2,$3)
17 $(call hs-suffix-rules,$1,$2,$3)
18 $$(foreach dir,$$($1_$2_HS_SRC_DIRS),\
19   $$(eval $$(call hs-suffix-rules-srcdir,$1,$2,$3,$$(dir))))
20
21 $(call hs-objs,$1,$2,$3)
22
23 $1_$2_$3_LIB = $1/$2/build/libHS$$($1_PACKAGE)-$$($1_$2_VERSION)$$($3__way).a
24
25 $1_$2_$3_MKSTUBOBJS = find $1/$2/build -name "*_stub.$$($3_osuf)" -print
26 # HACK ^^^ we tried to use $(wildcard), but apparently it fails due to
27 # make using cached directory contents, or something.
28
29 # Build the ordinary .a library
30 ifeq "$$($1_$2_SplitObjs)" "YES"
31 $$($1_$2_$3_LIB) : $$($1_$2_$3_HS_OBJS) $$($1_$2_C_OBJS) $$($1_$2_S_OBJS)
32         $$(RM) $$@
33         (echo $$($1_$2_C_OBJS) $$($1_$2_S_OBJS) `$$($1_$2_$3_MKSTUBOBJS)`; find $$(patsubst %.$$($3_osuf),%_split,$$($1_$2_$3_HS_OBJS)) -name '*.$$($3_osuf)' -print) | xargs $$(AR) $$(EXTRA_AR_ARGS) $$@
34 else
35 $$($1_$2_$3_LIB) : $$($1_$2_$3_HS_OBJS) $$($1_$2_C_OBJS) $$($1_$2_S_OBJS)
36         $$(RM) $$@
37         echo $$($1_$2_C_OBJS) $$($1_$2_S_OBJS) $$($1_$2_$3_HS_OBJS) `$$($1_$2_$3_MKSTUBOBJS)` | xargs $$(AR) $$(EXTRA_AR_ARGS) $$@
38 endif
39
40 $(call all-target,$1_$2,all_$1_$2_$3)
41 $(call all-target,$1_$2_$3,$$($1_$2_$3_LIB))
42
43 # Don't put bootstrapping packages in the bindist
44 ifneq "$4" "0"
45 BINDIST_HI += $$($1_$2_$3_HI)
46 BINDIST_LIBS += $$($1_$2_$3_LIB)
47 endif
48
49 # Build the GHCi library
50 ifeq "$3" "v"
51 $1_$2_GHCI_LIB = $1/$2/build/HS$$($1_PACKAGE)-$$($1_$2_VERSION).$$($3_osuf)
52 # Don't put bootstrapping packages in the bindist
53 ifneq "$4" "0"
54 BINDIST_LIBS += $$($1_$2_GHCI_LIB)
55 endif
56 $$($1_$2_GHCI_LIB) : $$($1_$2_$3_HS_OBJS) $$($1_$2_C_OBJS) $$($1_$2_S_OBJS)
57         $$(RM) $$@
58         $$(LD) -r -o $$@ $$(EXTRA_LD_OPTS) $$($1_$2_$3_HS_OBJS) $$($1_$2_C_OBJS) $$($1_$2_S_OBJS) `$$($1_$2_$3_MKSTUBOBJS)`
59
60 $(call all-target,$1_$2,$$($1_$2_GHCI_LIB))
61 endif
62
63 endef
64