1 # -----------------------------------------------------------------------------
2 # $Id: package.mk,v 1.30 2003/06/04 12:37:09 reid Exp $
6 ifeq "$(ProjectNameShort)" "ghc"
7 STANDALONE_PACKAGE = NO
9 STANDALONE_PACKAGE = YES
12 # -----------------------------------------------------------------------------
13 # Build the package configuration file and tell the compiler about it.
17 ifeq "$(STANDALONE_PACKAGE)" "NO"
18 PKGCONF_CPP_EXTRA_OPTS = -I$(GHC_INCLUDE_DIR)
20 PKGCONF_CPP_EXTRA_OPTS =
23 ifeq "$(STANDALONE_PACKAGE)" "NO"
24 package.conf.inplace : package.conf.in
25 $(CPP) $(RAWCPP_FLAGS) $(PKGCONF_CPP_EXTRA_OPTS) -x c $(PACKAGE_CPP_OPTS) $< \
26 | sed 's/^#.*$$//g' >$@
28 package.conf.installed : package.conf.in
29 $(CPP) $(RAWCPP_FLAGS) $(PKGCONF_CPP_EXTRA_OPTS) -DINSTALLING -x c $(PACKAGE_CPP_OPTS) $< \
30 | sed 's/^#.*$$//g' >$@
34 # we could be more accurate here and add a dependency on
35 # ghc/driver/package.conf, but that doesn't work too well because of
36 # make's limited accuracy with modification times: when doing 'make
37 # boot' in multiple packages, make won't detect that the package
38 # configuration needs updating if it was updated already in the last
41 # The stamp file goes in $(GHC_DRIVER_DIR), so that if someone happens
42 # to 'make clean' in ghc without cleaning in libraries too, the packages
43 # will be correctly re-installed.
45 ifeq "$(STANDALONE_PACKAGE)" "NO"
47 STAMP_PKG_CONF = $(GHC_DRIVER_DIR)/stamp-pkg-conf-$(PACKAGE)
48 CLEAN_FILES += $(STAMP_PKG_CONF)
50 ifneq "$(BootingFromHc)" "YES"
51 boot all :: $(STAMP_PKG_CONF)
54 $(STAMP_PKG_CONF) : package.conf.inplace package.conf.installed
55 $(GHC_PKG_INPLACE) --update-package <package.conf.inplace
56 $(GHC_PKG_INPLACE) -f $(GHC_DRIVER_DIR)/package.conf --update-package <package.conf.installed
57 @touch $(STAMP_PKG_CONF)
59 CLEAN_FILES += package.conf.installed package.conf.inplace
61 else # $(STANDALONE_PACKAGE) == "YES"
63 PACKAGE_CPP_OPTS += -DPACKAGE=\"${PACKAGE}\"
64 PACKAGE_CPP_OPTS += -DPACKAGE_DEPS='$(patsubst %,"%"$(comma),$(PACKAGE_DEPS))'
65 PACKAGE_CPP_OPTS += -DLIBRARY=\"HS$(PACKAGE)\"
66 PACKAGE_CPP_OPTS += -DLIBDIR=\"$(libdir)\"
68 # Let the package configuration file refer to $(libdir) as
69 # ${pkglibdir}. Note we can't use ${libdir} because ghc-pkg already
70 # redefines it to point to GHC's libdir (bug or feature?).
72 install :: package.conf.in
73 $(CPP) $(RAWCPP_FLAGS) $(PKGCONF_CPP_EXTRA_OPTS) -DINSTALLING -x c $(PACKAGE_CPP_OPTS) $< \
74 | sed -e 's/^#.*$$//g' -e 's/""//g' -e 's/, ]/ ]/g' \
75 | $(GHC_PKG) --force --update-package
77 endif # $(STANDALONE_PACKAGE)
81 # -----------------------------------------------------------------------------
82 # Building the static library libHS<pkg>.a
84 ifeq "$(STANDALONE_PACKAGE)" "NO"
88 SRC_HSC2HS_OPTS += -I.
90 ifeq "$(NON_HS_PACKAGE)" ""
91 SRC_HC_OPTS += -package-name $(PACKAGE)
92 SRC_HC_OPTS += $(GhcLibHcOpts)
93 SRC_HC_OPTS += $(patsubst %, -package %, $(PACKAGE_DEPS))
96 LIBRARY = libHS$(PACKAGE)$(_way).a
102 # POSSIBLE alternative version using --make:
105 # $(GHC_INPLACE) $(HC_OPTS) --make $(HS_SRCS)
109 # $(AR) $(AR_OPTS) $@ $(HS_OBJS)
113 # $(GHC_INPLACE) $(HC_OPTS) --make $<
115 # $(GHC_INPLACE) $(HC_OPTS) --make $<
117 # -----------------------------------------------------------------------------
118 # Installation; need to install .hi files as well as libraries
120 ifeq "$(DLLized)" "YES"
121 INSTALL_PROGS += $(DLL_NAME)
122 INSTALL_LIBS += $(patsubst %.a,%_imp.a, $(LIBRARY))
125 # The interface files are put inside the $(libdir), since they
126 # might (potentially) be platform specific..
128 ifeq "$(HIERARCHICAL_LIB)" "YES"
129 ifacedir = $(libdir)/imports
131 ifacedir = $(libdir)/hslibs-imports/$(PACKAGE)
134 # If the lib consists of a hierachy of modules, we must retain the directory
135 # structure when we install the interfaces.
136 ifeq "$(HIERARCHICAL_LIB)" "YES"
137 INSTALL_IFACES_WITH_DIRS += $(HS_IFACES)
138 ifneq "$(ALL_DIRS)" ""
140 @for i in $(ALL_DIRS); do \
141 $(INSTALL_DIR) $(ifacedir)/$$i; \
145 INSTALL_IFACES += $(HS_IFACES)
148 # -----------------------------------------------------------------------------
151 ifeq "$(STANDALONE_PACKAGE)" "NO"
152 MKDEPENDHS = $(GHC_INPLACE)
155 SRC_MKDEPENDC_OPTS += $(addprefix -I,$(ALL_DIRS))
157 ifeq "$(STANDALONE_PACKAGE)" "NO"
158 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
161 endif # $(PACKAGE) /= ""
163 # install library (could be implicitly specified or explicitly, like libHS*_cbits.a)
164 INSTALL_LIBS += $(LIBRARY)
166 #--------------------------------------------------------------
167 # Building dynamically-linkable libraries for GHCi
169 # Build $(GHCI_LIBRARY) whenever we build $(LIBRARY)
171 # Why? GHCi can only link .o files (at the moment), not .a files
172 # so we have to build libFoo.o as well as libFoo.a
174 # Furthermore, GHCi currently never loads
175 # profiling libraries (or other non-std ways)
177 ifneq "$(LIBRARY)" ""
180 ifeq "$(GhcWithInterpreter)" "YES"
182 GHCI_LIBRARY = $(patsubst lib%.a,%.o,$(LIBRARY))
184 INSTALL_LIBS += $(GHCI_LIBRARY)
185 CLEAN_FILES += $(GHCI_LIBRARY)
187 all :: $(GHCI_LIBRARY)
189 ifneq "$(DONT_WANT_STD_GHCI_LIB_RULE)" "YES"
190 # If you don't want to build GHCI_LIBRARY the 'standard' way,
191 # set DONT_WANT_STD_GHCI_LIB_RULE to YES. The Prelude and
192 # hslibs/Win32 uses this 'feature', which will go away soon
193 # when we can use a "fixed" ld.
195 $(GHCI_LIBRARY) : $(LIBOBJS)
196 $(LD) -r $(LD_X) -o $@ $(STUBOBJS) $(LIBOBJS)
198 endif # DONT_WANT_STD_GHCI_LIB_RULE
199 endif # GhcWithInterpreter
202 # -----------------------------------------------------------------------------
203 # Doc building with Haddock
205 ifneq "$(NO_HADDOCK_DOCS)" "YES"
207 HS_PPS = $(addsuffix .raw-hs, $(basename $(filter-out $(EXCLUDED_HADDOCK_SRCS), $(HS_SRCS))))
210 HTML_DOC = $(HTML_DIR)/index.html
214 CLEAN_FILES += $(HS_PPS) $(addsuffix .tmp, $(HS_SRCS))
218 @echo Haddock must be installed in order to build HTML library documentation.
219 @echo Please install Haddock and re-configure.
226 $(RM) -rf $(HTML_DIR)
228 $(HTML_DOC) : $(HS_PPS)
229 @$(INSTALL_DIR) $(HTML_DIR)
230 $(HADDOCK) $(HADDOCK_OPTS) -h -o $(HTML_DIR) $(HS_PPS) \
231 --dump-interface=$(PACKAGE).haddock \
232 $(foreach pkg, $(PACKAGE_DEPS), \
233 --read-interface=../$(pkg),../$(pkg)/$(pkg).haddock)
235 CLEAN_FILES += $(PACKAGE).haddock
238 $(GHC) $(HC_OPTS) -D__HADDOCK__ -E -cpp $< -o $<.tmp && sed -e 's/^#.*//' <$<.tmp >$@
241 $(GHC) $(HC_OPTS) -D__HADDOCK__ -E -cpp $< -o $<.tmp && sed -e 's/^#.*//' <$<.tmp >$@
243 install-docs :: $(HTML_DOC)
244 @$(INSTALL_DIR) $(datadir)/html/$(PACKAGE)
245 @for i in $(HTML_DIR)/*; do \
246 echo $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir)/html/$(PACKAGE); \
247 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir)/html/$(PACKAGE); \
249 $(INSTALL_DATA) $(INSTALL_OPTS) $(PACKAGE).haddock $(datadir)/html/$(PACKAGE)
252 endif # NO_HADDOCK_DOCS
254 # -----------------------------------------------------------------------------
256 endif # $(LIBRARY) /= ""