Update ghc-pkg to follow Cabal changes
[ghc-hetmet.git] / utils / ghc-pkg / Makefile
1 TOP=../..
2 include $(TOP)/mk/boilerplate.mk
3
4 # -----------------------------------------------------------------------------
5 # ghc-pkg.bin
6
7 # Beyond stage 1, honour any Mac OS X depolyment target options.  If we use 
8 # these options in stage 1 we get a linker error if the bootstrap compiler is
9 #  for a more recent OS version
10 ifeq "$(stage)" "2"
11 SRC_CC_OPTS += $(MACOSX_DEPLOYMENT_CC_OPTS)
12 SRC_HC_OPTS += $(addprefix -optc, $(MACOSX_DEPLOYMENT_CC_OPTS))
13 SRC_LD_OPTS += $(addprefix -optl, $(MACOSX_DEPLOYMENT_LD_OPTS))
14 endif
15
16 SRC_HC_OPTS += -cpp -Wall -fno-warn-name-shadowing -fno-warn-unused-matches
17
18 # This causes libghccompat.a to be used:
19 include $(GHC_COMPAT_DIR)/compat.mk
20
21 SRC_HC_OPTS += $(PACKAGE_CABAL)
22
23 # This is required because libghccompat.a must be built with
24 # $(GhcHcOpts) because it is linked to the compiler, and hence
25 # we must also build with $(GhcHcOpts) here:
26 SRC_HC_OPTS += $(GhcHcOpts) $(GhcStage1HcOpts)
27
28 ifeq "$(Windows)" "NO"
29 SRC_HC_OPTS += -package unix
30 endif
31
32 ifeq "$(ghc_ge_607)" "YES"
33 SRC_HC_OPTS += -package containers
34 endif
35
36 # On Windows, ghc-pkg is a standalone program
37 # ($bindir/ghc-pkg.exe), whereas on Unix it needs a wrapper script
38 # to pass the appropriate flag to the real binary
39 # ($libexecdir/ghc-pkg.bin) so that it can find package.conf.
40 # on Windows, we need to take control of filename globbing ourselves
41 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
42 HS_PROG           = ghc-pkg.exe
43 INSTALL_PROGS    += $(HS_PROG)
44 EXCLUDE_SRCS     += CRT_noglob.c
45 NOGLOB_O          = CRT_noglob.o
46 else
47
48 # We have two version: the inplace version compiled by the bootstrap compiler
49 # and the install version compiled by the stage 1 compiler.
50 # When creating or using bindists we always want the final binary, as built
51 # by the stage 1 compiler.
52 ifeq "$(DOING_BIN_DIST)" "YES"
53 HS_PROG           = ghc-pkg.bin
54 else
55 ifeq "$(stage)" "2"
56 HS_PROG           = ghc-pkg.bin
57 else
58 HS_PROG           = ghc-pkg-inplace.bin
59 endif
60 endif
61 INSTALL_LIBEXECS += $(HS_PROG)
62 NOGLOB_O          =
63
64 endif
65
66 # -----------------------------------------------------------------------------
67 # Create the Version.hs file
68
69 VERSION_HS = Version.hs
70 EXTRA_SRCS += $(VERSION_HS)
71
72 boot :: $(VERSION_HS)
73
74 Version.hs : Makefile $(TOP)/mk/config.mk
75         @$(RM) -f $(VERSION_HS)
76         @echo "Creating $(VERSION_HS) ... "
77         @echo "module Version where" >>$(VERSION_HS)
78         @echo "version, targetOS, targetARCH :: String" >>$(VERSION_HS)
79         @echo "version    = \"$(ProjectVersion)\"" >> $(VERSION_HS)
80         @echo "targetOS   = \"$(TargetOS_CPP)\"" >> $(VERSION_HS)
81         @echo "targetARCH = \"$(TargetArch_CPP)\"" >> $(VERSION_HS)
82
83 DIST_CLEAN_FILES += $(VERSION_HS)
84
85 # -----------------------------------------------------------------------------
86 # ghc-pkg and ghc-pkg-inplace scripts
87
88 # ghc-pkg-inplace used to be either a /bin/sh script, or a .bat script
89 # on Windows.  It is now a real binary, compiled from a tiny .hs
90 # file.  The problem with using scripts here was that the .bat script
91 # cannot be executed by /bin/sh on MSYS (it can on Cygwin), but the
92 # /bin/sh script cannot be executed by Cabal.  So we would have needed
93 # both.  A single binary is therefore simpler.
94
95 INPLACE_HS=ghc-pkg-inplace.hs
96 INPLACE_PROG=ghc-pkg-inplace
97 EXCLUDED_SRCS+=$(INPLACE_HS)
98
99 $(INPLACE_HS): Makefile $(FPTOOLS_TOP)/mk/config.mk $(NOGLOB_O)
100         echo "import System.Cmd; import System.Environment; import System.Exit" > $@
101         echo "main = do args <- getArgs; rawSystem \"$(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)/$(HS_PROG)\" (\"--global-conf\":\"$(FPTOOLS_TOP_ABS)/driver/package.conf.inplace\":args) >>= exitWith" >> $@
102
103 $(INPLACE_PROG): $(INPLACE_HS)
104         $(HC) --make $< -o $@ $(LD_OPTS) $(NOGLOB_O)
105
106 all :: $(INPLACE_PROG)
107
108 CLEAN_FILES += $(INPLACE_HS) $(INPLACE_PROG)
109
110 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
111 LINK = ghc-pkg
112 LINK_TARGET = $(LINK)-$(ProjectVersion)
113 INSTALLED_SCRIPT=$(DESTDIR)$(bindir)/$(LINK_TARGET)
114 install::
115         $(INSTALL_DIR) $(DESTDIR)$(bindir)
116         $(RM) -f $(INSTALLED_SCRIPT)
117         echo "#!$(SHELL)"                                           >> $(INSTALLED_SCRIPT)
118         echo "GHCPKGBIN=$(libexecdir)/$(HS_PROG)"                   >> $(INSTALLED_SCRIPT)
119         echo "PKGCONF=$(libdir)/package.conf"                       >> $(INSTALLED_SCRIPT)
120         echo 'exec $$GHCPKGBIN --global-conf $$PKGCONF $${1+"$$@"}' >> $(INSTALLED_SCRIPT)
121         $(EXECUTABLE_FILE) $(INSTALLED_SCRIPT)
122 endif
123
124 # ghc-pkg is needed to boot in rts/ and library dirs
125 # Do a recursive 'make all' after generating dependencies, because this
126 # will work with 'make -j'.
127 ifneq "$(BootingFromHc)" "YES"
128 boot :: depend
129         $(MAKE) all
130 endif
131
132 binary-dist:
133         $(INSTALL_DIR)                $(BIN_DIST_DIR)/utils/ghc-pkg
134         $(INSTALL_DATA)    Makefile   $(BIN_DIST_DIR)/utils/ghc-pkg/
135         $(INSTALL_PROGRAM) $(HS_PROG) $(BIN_DIST_DIR)/utils/ghc-pkg/
136
137 include $(TOP)/mk/target.mk