[project @ 2002-02-13 10:45:28 by simonmar]
[ghc-hetmet.git] / mk / package.mk
1 # -----------------------------------------------------------------------------
2 # $Id: package.mk,v 1.3 2002/02/13 10:45:28 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 # Building dynamically-linkable libraries for GHCi
63 #
64 # Build $(GHCI_LIBRARY) from $(OBJS)
65 #
66 # Why?  GHCi can only link .o files (at the moment), not .a files
67 # so we have to build libFoo.o as well as libFoo.a
68 #
69 # Furthermore, GHCi currently never loads 
70 # profiling libraries (or other non-std ways)
71 #
72 # Inputs:
73 #   $(GHCI_LIBRARY)
74 #
75 # Outputs:
76 #   Rule to build $(GHCI_LIBRARY)
77
78 ifeq "$(way)" ""
79 ifeq "$(GhcWithInterpreter)" "YES"
80
81 GHCI_LIBRARY = HS$(PACKAGE)$(_cbits)$(_way).o
82
83 INSTALL_LIBS += $(GHCI_LIBRARY)
84 CLEAN_FILES  += $(GHCI_LIBRARY)
85
86 all :: $(GHCI_LIBRARY)
87
88 ifneq "$(DONT_WANT_STD_GHCI_LIB_RULE)" "YES"
89 # If you don't want to build GHCI_LIBRARY the 'standard' way,
90 # set DONT_WANT_STD_GHCI_LIB_RULE to YES. The Prelude and
91 # hslibs/Win32 uses this 'feature', which will go away soon
92 # when we can use a "fixed" ld.
93 #
94 $(GHCI_LIBRARY) : $(LIBOBJS)
95         $(LD) -r $(LD_X) -o $@ $(LIBOBJS)
96
97 endif # DONT_WANT_STD_GHCI_LIB_RULE
98 endif # GhcWithInterpreter
99 endif # way
100
101 # -----------------------------------------------------------------------------
102 # Installation; need to install .hi files as well as libraries
103 #
104 # The interface files are put inside the $(libdir), since they
105 # might (potentially) be platform specific..
106 #
107 # override is used here because for binary distributions, datadir is
108 # set on the command line. sigh.
109 #
110
111 override datadir:=$(libdir)/imports/$(PACKAGE)
112
113 # -----------------------------------------------------------------------------
114 # Dependencies
115
116 MKDEPENDHS = $(GHC_INPLACE)
117 SRC_MKDEPENDC_OPTS += $(patsubst %,-I%,$(ALL_DIRS)) -I$(GHC_INCLUDE_DIR)
118
119 endif # $(PACKAGE) /= ""
120