Fix bashisms; patch from Bernie Pope
[ghc-hetmet.git] / gmp / Makefile
1
2 TOP=..
3
4 include $(TOP)/mk/boilerplate.mk
5
6 # -----------------------------------------------------------------------------
7 # Compile GMP only if we don't have it already
8 #
9 # We use GMP's own configuration stuff, because it's all rather hairy
10 # and not worth re-implementing in our Makefile framework.
11
12 ifneq "$(HaveLibGmp)" "YES"
13 ifneq "$(HaveFrameworkGMP)" "YES"
14
15 PLATFORM := $(shell echo $(HOSTPLATFORM) | sed 's/i[567]86/i486/g')
16
17 # 2007-09-26
18 #     set -o igncr 
19 # is not a valid command on non-Cygwin-systems.
20 # Let it fail silently instead of aborting the build.
21 #
22 # 2007-07-05
23 # We do
24 #     set -o igncr; export SHELLOPTS
25 # here as otherwise checking the size of limbs
26 # makes the build fall over on Cygwin. See the thread
27 # http://www.cygwin.com/ml/cygwin/2006-12/msg00011.html
28 # for more details.
29
30 # 2007-07-05
31 # Passing
32 #     as_ln_s='cp -p'
33 # isn't sufficient to stop cygwin using symlinks the mingw gcc can't
34 # follow, as it isn't used consistently. Instead we put an ln.bat in
35 # path that always fails.
36
37 GMP_TARBALL := $(firstword $(wildcard gmp*.tar.gz))
38 GMP_DIR := $(subst .tar.gz,,$(GMP_TARBALL))
39 BMP_BUILD_DIR := build
40
41 ifeq "$(findstring dyn, $(GhcRTSWays))" "dyn"
42 BUILD_SHARED=yes
43 else
44 BUILD_SHARED=no
45 endif
46
47 boot :: stamp.gmp.static
48 BINDIST_STAMPS = stamp.gmp.static
49 INSTALL_HEADERS += gmp.h
50 INSTALL_LIBS += libgmp.a
51
52 ifeq "$(BUILD_SHARED)" "yes"
53 boot :: stamp.gmp.shared
54 BINDIST_STAMPS += stamp.gmp.shared
55 INSTALL_LIBS += libgmp.dll.a
56 INSTALL_PROGS += libgmp-3.dll
57 endif
58
59 install all :: $(INSTALL_HEADERS) $(INSTALL_LIBS) $(INSTALL_PROGS)
60
61 stamp.gmp.static:
62         $(RM) -rf $(GMP_DIR) gmpbuild
63         $(TAR) -zxf $(GMP_TARBALL)
64         mv $(GMP_DIR) gmpbuild
65         chmod +x ln
66         (set -o igncr 2>/dev/null) && set -o igncr; export SHELLOPTS; \
67             PATH=`pwd`:$$PATH; \
68             export PATH; \
69             cd gmpbuild && \
70             CC=$(WhatGccIsCalled) $(SHELL) configure \
71                   --enable-shared=no --host=$(PLATFORM) --build=$(PLATFORM)
72         touch $@
73
74 stamp.gmp.shared:
75         $(RM) -rf $(GMP_DIR) gmpbuild-shared
76         $(TAR) -zxf $(GMP_TARBALL)
77         mv $(GMP_DIR) gmpbuild-shared
78         chmod +x ln
79         (set -o igncr 2>/dev/null) && set -o igncr; export SHELLOPTS; \
80             PATH=`pwd`:$$PATH; \
81             export PATH; \
82             cd gmpbuild-shared && \
83             CC=$(WhatGccIsCalled) $(SHELL) configure \
84                   --enable-shared=yes --disable-static --host=$(PLATFORM) --build=$(PLATFORM)
85         touch $@
86
87 gmp.h: stamp.gmp.static
88         $(CP) gmpbuild/gmp.h .
89
90 libgmp.a: stamp.gmp.static
91         $(MAKE) -C gmpbuild MAKEFLAGS=
92         $(CP) gmpbuild/.libs/libgmp.a .
93         $(RANLIB) libgmp.a
94
95 libgmp-3.dll: stamp.gmp.shared
96         $(MAKE) -C gmpbuild-shared MAKEFLAGS=
97         $(CP) gmpbuild-shared/.libs/libgmp-3.dll .
98
99 libgmp.dll.a: libgmp-3.dll
100         $(CP) gmpbuild-shared/.libs/libgmp.dll.a .
101 endif
102 endif
103
104 # GMP takes a long time to build, but changes rarely.  Hence we don't
105 # bother cleaning it before validating, because that adds a
106 # significant overhead to validation.
107 ifeq "$(Validating)" "NO"
108 clean distclean maintainer-clean ::
109         $(RM) -f stamp.gmp.static stamp.gmp.shared
110         $(RM) -rf gmpbuild
111         $(RM) -rf gmpbuild-shared
112 endif
113
114 #-----------------------------------------------------------------------------
115 #
116 # binary-dist
117
118 include $(TOP)/mk/target.mk
119
120 binary-dist:
121         $(INSTALL_DIR)                         $(BIN_DIST_DIR)/gmp
122         $(INSTALL_DATA)    Makefile            $(BIN_DIST_DIR)/gmp/
123 ifneq "$(HaveLibGmp)" "YES"
124  ifneq "$(HaveFrameworkGMP)" "YES"
125         $(INSTALL_DATA)    $(BINDIST_STAMPS)   $(BIN_DIST_DIR)/gmp/
126   ifneq "$(INSTALL_PROGS)" ""
127         $(INSTALL_DATA)    $(INSTALL_PROGS)    $(BIN_DIST_DIR)/gmp/
128   endif
129   ifneq "$(INSTALL_LIBS)" ""
130         $(INSTALL_DATA)    $(INSTALL_LIBS)     $(BIN_DIST_DIR)/gmp/
131   endif
132   ifneq "$(INSTALL_HEADERS)" ""
133         $(INSTALL_HEADER)  $(INSTALL_HEADERS)  $(BIN_DIST_DIR)/gmp/
134   endif
135  endif
136 endif
137