[project @ 2003-03-31 12:42:04 by simonmar]
[ghc-hetmet.git] / mk / package.mk
1 # -----------------------------------------------------------------------------
2 # $Id: package.mk,v 1.23 2003/03/31 12:42:04 simonmar Exp $
3
4 ifneq "$(PACKAGE)" ""
5
6 # -----------------------------------------------------------------------------
7 # Build the package configuration file and tell the compiler about it.
8
9 ifeq "$(way)" ""
10
11 $(PACKAGE).conf.inplace   : $(PACKAGE).conf.in
12         $(CPP) $(RAWCPP_FLAGS) -I$(GHC_INCLUDE_DIR) -x c $(PACKAGE_CPP_OPTS) $< \
13                 | sed 's/^#.*$$//g' >$@
14
15 $(PACKAGE).conf.installed : $(PACKAGE).conf.in
16         $(CPP) $(RAWCPP_FLAGS) -I$(GHC_INCLUDE_DIR) -DINSTALLING -x c $(PACKAGE_CPP_OPTS) $< \
17                 | sed 's/^#.*$$//g' >$@
18
19 # we could be more accurate here and add a dependency on
20 # ghc/driver/package.conf, but that doesn't work too well because of
21 # make's limited accuracy with modification times: when doing 'make
22 # boot' in multiple packages, make won't detect that the package
23 # configuration needs updating if it was updated already in the last
24 # second.
25 #
26 # The stamp file goes in $(GHC_DRIVER_DIR), so that if someone happens
27 # to 'make clean' in ghc without cleaning in libraries too, the packages
28 # will be correctly re-installed.
29 #
30 STAMP_PKG_CONF = $(GHC_DRIVER_DIR)/stamp-pkg-conf-$(PACKAGE)
31 CLEAN_FILES += $(STAMP_PKG_CONF)
32
33 ifneq "$(BootingFromHc)" "YES"
34 boot all :: $(STAMP_PKG_CONF)
35 endif
36
37 $(STAMP_PKG_CONF) : $(PACKAGE).conf.inplace $(PACKAGE).conf.installed
38         $(GHC_PKG_INPLACE) --update-package <$(PACKAGE).conf.inplace
39         $(GHC_PKG_INPLACE)  -f $(GHC_DRIVER_DIR)/package.conf --update-package <$(PACKAGE).conf.installed
40         @touch $(STAMP_PKG_CONF)
41
42 CLEAN_FILES += $(PACKAGE).conf.installed $(PACKAGE).conf.inplace 
43
44 endif # $(way) == ""
45
46 # -----------------------------------------------------------------------------
47 # Building the static library libHS<pkg>.a
48
49 HC              = $(GHC_INPLACE)
50
51 SRC_HSC2HS_OPTS += -I.
52
53 ifeq "$(NON_HS_PACKAGE)" ""
54 SRC_HC_OPTS     += -package-name $(PACKAGE)
55 SRC_HC_OPTS     += $(GhcLibHcOpts)
56 SRC_HC_OPTS     += $(patsubst %, -package %, $(PACKAGE_DEPS))
57 endif
58
59 LIBRARY         = libHS$(PACKAGE)$(_way).a
60
61 WAYS            = $(GhcLibWays)
62
63 all :: $(LIBRARY)
64
65 # POSSIBLE alternative version using --make:
66 #
67 # lib : $(HS_SRCS)
68 #       $(GHC_INPLACE) $(HC_OPTS) --make $(HS_SRCS)
69
70 # $(LIBNAME) : lib
71 #       $(RM) $@
72 #       $(AR) $(AR_OPTS) $@ $(HS_OBJS)
73 #       $(RANLIB) $@
74
75 # %.o : %.hs
76 #       $(GHC_INPLACE) $(HC_OPTS) --make $<
77 # %.o : %.lhs
78 #       $(GHC_INPLACE) $(HC_OPTS) --make $<
79
80 # -----------------------------------------------------------------------------
81 # Installation; need to install .hi files as well as libraries
82
83 ifeq "$(DLLized)" "YES"
84 INSTALL_PROGS += $(DLL_NAME)
85 INSTALL_LIBS += $(patsubst %.a,%_imp.a, $(LIBRARY))
86 endif
87
88 # The interface files are put inside the $(libdir), since they
89 # might (potentially) be platform specific..
90
91 ifacedir = $(libdir)/imports/$(PACKAGE)
92
93 # If the lib consists of a hierachy of modules, we must retain the directory
94 # structure when we install the interfaces.
95 ifeq "$(HIERARCHICAL_LIB)" "YES"
96 INSTALL_IFACES_WITH_DIRS += $(HS_IFACES)
97 ifneq "$(ALL_DIRS)" ""
98 install ::
99         @for i in $(ALL_DIRS); do \
100                 $(INSTALL_DIR) $(ifacedir)/$$i; \
101         done
102 endif
103 else
104 INSTALL_IFACES += $(HS_IFACES)
105 endif
106
107 # -----------------------------------------------------------------------------
108 # Dependencies
109
110 MKDEPENDHS = $(GHC_INPLACE)
111 SRC_MKDEPENDC_OPTS += $(addprefix -I,$(ALL_DIRS)) -I$(GHC_INCLUDE_DIR)
112
113 endif # $(PACKAGE) /= ""
114
115 # install library (could be implicitly specified or explicitly, like libHS*_cbits.a)
116 INSTALL_LIBS  += $(LIBRARY)
117
118 #--------------------------------------------------------------
119 # Building dynamically-linkable libraries for GHCi
120 #
121 # Build $(GHCI_LIBRARY) whenever we build $(LIBRARY)
122 #
123 # Why?  GHCi can only link .o files (at the moment), not .a files
124 # so we have to build libFoo.o as well as libFoo.a
125 #
126 # Furthermore, GHCi currently never loads 
127 # profiling libraries (or other non-std ways)
128
129 ifneq "$(LIBRARY)" ""
130
131 ifeq "$(way)" ""
132 ifeq "$(GhcWithInterpreter)" "YES"
133
134 GHCI_LIBRARY = $(patsubst lib%.a,%.o,$(LIBRARY))
135
136 INSTALL_LIBS += $(GHCI_LIBRARY)
137 CLEAN_FILES  += $(GHCI_LIBRARY)
138
139 all :: $(GHCI_LIBRARY)
140
141 ifneq "$(DONT_WANT_STD_GHCI_LIB_RULE)" "YES"
142 # If you don't want to build GHCI_LIBRARY the 'standard' way,
143 # set DONT_WANT_STD_GHCI_LIB_RULE to YES. The Prelude and
144 # hslibs/Win32 uses this 'feature', which will go away soon
145 # when we can use a "fixed" ld.
146 #
147 $(GHCI_LIBRARY) : $(LIBOBJS)
148         $(LD) -r $(LD_X) -o $@ $(STUBOBJS) $(LIBOBJS)
149
150 endif # DONT_WANT_STD_GHCI_LIB_RULE
151 endif # GhcWithInterpreter
152 endif # way
153
154 # -----------------------------------------------------------------------------
155 # Doc building with Haddock
156
157 ifneq "$(NO_HADDOCK_DOCS)" "YES"
158
159 HS_PPS = $(addsuffix .raw-hs, $(basename $(filter-out $(EXCLUDED_HADDOCK_SRCS), $(HS_SRCS))))
160
161 HTML_DIR = html
162 HTML_DOC = $(HTML_DIR)/index.html
163
164 ifneq "$(HS_PPS)" ""
165
166 CLEAN_FILES += $(HS_PPS) $(addsuffix .tmp, $(HS_SRCS))
167
168 ifeq "$(HADDOCK)" ""
169 html ::
170         @echo Haddock must be installed in order to build HTML library documentation.
171         @echo Please install Haddock and re-configure.
172         @exit 1
173 endif
174
175 html :: $(HTML_DOC)
176
177 extraclean :: 
178         $(RM) -rf $(HTML_DIR)
179
180 $(HTML_DOC) : $(HS_PPS)
181         @$(INSTALL_DIR) $(HTML_DIR)
182         $(HADDOCK) $(HADDOCK_OPTS) -h -o $(HTML_DIR) $(HS_PPS) \
183                 --dump-interface=$(PACKAGE).haddock \
184                 $(foreach pkg, $(PACKAGE_DEPS), \
185                    --read-interface=../$(pkg),../$(pkg)/$(pkg).haddock)
186
187 %.raw-hs : %.lhs
188         $(GHC_INPLACE) $(HC_OPTS) -D__HADDOCK__ -E -cpp $< -o $<.tmp && sed -e 's/^#.*//' <$<.tmp >$@
189
190 %.raw-hs : %.hs
191         $(GHC_INPLACE) $(HC_OPTS) -D__HADDOCK__ -E -cpp $< -o $<.tmp && sed -e 's/^#.*//' <$<.tmp >$@
192
193 install-docs :: $(HTML_DOC)
194         @$(INSTALL_DIR) $(datadir)/html/$(PACKAGE)
195         @for i in $(HTML_DIR)/*; do \
196            echo $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir)/html/$(PACKAGE); \
197            $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir)/html/$(PACKAGE); \
198         done
199         $(INSTALL_DATA) $(INSTALL_OPTS) $(PACKAGE).haddock $(datadir)/html/$(PACKAGE)
200
201 endif # HS_PPS
202 endif # NO_HADDOCK_DOCS
203
204 # -----------------------------------------------------------------------------
205
206 endif # $(LIBRARY) /= ""