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