[project @ 2002-02-13 15:48:03 by simonmar]
[ghc-hetmet.git] / mk / package.mk
1 # -----------------------------------------------------------------------------
2 # $Id: package.mk,v 1.4 2002/02/13 15:48:03 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) -DINSTALLED -x c $(PACKAGE_CPP_OPTS) $< \
17                 | sed 's/^#.*$$//g' >$@
18
19 boot all :: $(PACKAGE).conf.inplace $(PACKAGE).conf.installed
20         $(GHC_PKG_INPLACE) --update-package <$(PACKAGE).conf.inplace
21         $(GHC_PKG_INPLACE)  -f $(GHC_DRIVER_DIR)/package.conf --update-package <$(PACKAGE).conf.installed
22
23 CLEAN_FILES += $(PACKAGE).conf.installed $(PACKAGE).conf.inplace
24
25 endif # $(way) == ""
26
27 # -----------------------------------------------------------------------------
28 # Building the static library libHS<pkg>.a
29
30 HC              = $(GHC_INPLACE)
31
32 SRC_HSC2HS_OPTS += -I.
33
34 ifeq "$(NON_HS_PACKAGE)" ""
35 SRC_HC_OPTS     += -package-name $(PACKAGE)
36 SRC_HC_OPTS     += $(GhcLibHcOpts)
37 SRC_HC_OPTS     += $(patsubst %, -package %, $(PACKAGE_DEPS))
38 endif
39
40 LIBRARY         = libHS$(PACKAGE)$(_way).a
41
42 WAYS            = $(GhcLibWays)
43
44 all :: $(LIBRARY)
45
46 # POSSIBLE alternative version using --make:
47 #
48 # lib : $(HS_SRCS)
49 #       $(GHC_INPLACE) $(HC_OPTS) --make $(HS_SRCS)
50
51 # $(LIBNAME) : lib
52 #       $(RM) $@
53 #       $(AR) $(AR_OPTS) $@ $(HS_OBJS)
54 #       $(RANLIB) $@
55
56 # %.o : %.hs
57 #       $(GHC_INPLACE) $(HC_OPTS) --make $<
58 # %.o : %.lhs
59 #       $(GHC_INPLACE) $(HC_OPTS) --make $<
60
61 # -----------------------------------------------------------------------------
62 # Installation; need to install .hi files as well as libraries
63 #
64 # The interface files are put inside the $(libdir), since they
65 # might (potentially) be platform specific..
66 #
67 # override is used here because for binary distributions, datadir is
68 # set on the command line. sigh.
69 #
70
71 override datadir:=$(libdir)/imports/$(PACKAGE)
72
73 # -----------------------------------------------------------------------------
74 # Dependencies
75
76 MKDEPENDHS = $(GHC_INPLACE)
77 SRC_MKDEPENDC_OPTS += $(patsubst %,-I%,$(ALL_DIRS)) -I$(GHC_INCLUDE_DIR)
78
79 endif # $(PACKAGE) /= ""
80
81 #--------------------------------------------------------------
82 # Building dynamically-linkable libraries for GHCi
83 #
84 # Build $(GHCI_LIBRARY) whenever we build $(LIBRARY)
85 #
86 # Why?  GHCi can only link .o files (at the moment), not .a files
87 # so we have to build libFoo.o as well as libFoo.a
88 #
89 # Furthermore, GHCi currently never loads 
90 # profiling libraries (or other non-std ways)
91
92 ifneq "$(LIBRARY)" ""
93
94 ifeq "$(way)" ""
95 ifeq "$(GhcWithInterpreter)" "YES"
96
97 GHCI_LIBRARY = $(patsubst lib%.a,%.o,$(LIBRARY))
98
99 INSTALL_LIBS += $(GHCI_LIBRARY)
100 CLEAN_FILES  += $(GHCI_LIBRARY)
101
102 all :: $(GHCI_LIBRARY)
103
104 ifneq "$(DONT_WANT_STD_GHCI_LIB_RULE)" "YES"
105 # If you don't want to build GHCI_LIBRARY the 'standard' way,
106 # set DONT_WANT_STD_GHCI_LIB_RULE to YES. The Prelude and
107 # hslibs/Win32 uses this 'feature', which will go away soon
108 # when we can use a "fixed" ld.
109 #
110 $(GHCI_LIBRARY) : $(LIBOBJS)
111         $(LD) -r $(LD_X) -o $@ $(LIBOBJS)
112
113 endif # DONT_WANT_STD_GHCI_LIB_RULE
114 endif # GhcWithInterpreter
115 endif # way
116
117 endif # $(LIBRARY) /= ""