FIX #1963: catch Ctrl-C and clean up properly
[ghc-hetmet.git] / utils / ghc-pkg / Makefile
1 TOP=../..
2 include $(TOP)/mk/boilerplate.mk
3
4 # -----------------------------------------------------------------------------
5 # ghc-pkg.bin
6
7 SRC_HC_OPTS += -cpp -Wall -fno-warn-name-shadowing -fno-warn-unused-matches
8
9 # This causes libghccompat.a to be used:
10 include $(GHC_COMPAT_DIR)/compat.mk
11
12 SRC_HC_OPTS += $(PACKAGE_CABAL)
13
14 # This is required because libghccompat.a must be built with
15 # $(GhcHcOpts) because it is linked to the compiler, and hence
16 # we must also build with $(GhcHcOpts) here:
17 SRC_HC_OPTS += $(GhcHcOpts) $(GhcStage1HcOpts)
18
19 ifeq "$(Windows)" "NO"
20 SRC_HC_OPTS += -package unix
21 endif
22
23 ifeq "$(ghc_ge_607)" "YES"
24 SRC_HC_OPTS += -package containers
25 endif
26
27 # On Windows, ghc-pkg is a standalone program
28 # ($bindir/ghc-pkg.exe), whereas on Unix it needs a wrapper script
29 # to pass the appropriate flag to the real binary
30 # ($libexecdir/ghc-pkg.bin) so that it can find package.conf.
31 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
32 HS_PROG           = ghc-pkg.exe
33 INSTALL_PROGS    += $(HS_PROG)
34 else
35 HS_PROG           = ghc-pkg.bin
36 INSTALL_LIBEXECS += $(HS_PROG)
37 endif
38
39 # -----------------------------------------------------------------------------
40 # Create the Version.hs file
41
42 VERSION_HS = Version.hs
43 EXTRA_SRCS += $(VERSION_HS)
44
45 boot :: $(VERSION_HS)
46
47 Version.hs : Makefile $(TOP)/mk/config.mk
48         @$(RM) -f $(VERSION_HS)
49         @echo "Creating $(VERSION_HS) ... "
50         @echo "module Version where" >>$(VERSION_HS)
51         @echo "version, targetOS, targetARCH :: String" >>$(VERSION_HS)
52         @echo "version    = \"$(ProjectVersion)\"" >> $(VERSION_HS)
53         @echo "targetOS   = \"$(TargetOS_CPP)\"" >> $(VERSION_HS)
54         @echo "targetARCH = \"$(TargetArch_CPP)\"" >> $(VERSION_HS)
55
56 DIST_CLEAN_FILES += $(VERSION_HS)
57
58 # -----------------------------------------------------------------------------
59 # ghc-pkg and ghc-pkg-inplace scripts
60
61 # ghc-pkg-inplace used to be either a /bin/sh script, or a .bat script
62 # on Windows.  It is now a real binary, compiled from a tiny .hs
63 # file.  The problem with using scripts here was that the .bat script
64 # cannot be executed by /bin/sh on MSYS (it can on Cygwin), but the
65 # /bin/sh script cannot be executed by Cabal.  So we would have needed
66 # both.  A single binary is therefore simpler.
67
68 INPLACE_HS=ghc-pkg-inplace.hs
69 INPLACE_PROG=ghc-pkg-inplace
70 EXCLUDED_SRCS+=$(INPLACE_HS)
71
72 $(INPLACE_HS): Makefile $(FPTOOLS_TOP)/mk/config.mk
73         echo "import System.Cmd; import System.Environment; import System.Exit" > $@
74         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" >> $@
75
76 $(INPLACE_PROG): $(INPLACE_HS)
77         $(HC) --make $< -o $@
78
79 all :: $(INPLACE_PROG)
80
81 CLEAN_FILES += $(INPLACE_HS) $(INPLACE_PROG)
82
83 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
84 LINK = ghc-pkg
85 LINK_TARGET = $(LINK)-$(ProjectVersion)
86 INSTALLED_SCRIPT=$(DESTDIR)$(bindir)/$(LINK_TARGET)
87 install::
88         $(INSTALL_DIR) $(DESTDIR)$(bindir)
89         $(RM) -f $(INSTALLED_SCRIPT)
90         echo "#!$(SHELL)"                                           >> $(INSTALLED_SCRIPT)
91         echo "GHCPKGBIN=$(libexecdir)/$(HS_PROG)"                   >> $(INSTALLED_SCRIPT)
92         echo "PKGCONF=$(libdir)/package.conf"                       >> $(INSTALLED_SCRIPT)
93         echo 'exec $$GHCPKGBIN --global-conf $$PKGCONF $${1+"$$@"}' >> $(INSTALLED_SCRIPT)
94         $(EXECUTABLE_FILE) $(INSTALLED_SCRIPT)
95 endif
96
97 # ghc-pkg is needed to boot in rts/ and library dirs
98 # Do a recursive 'make all' after generating dependencies, because this
99 # will work with 'make -j'.
100 ifneq "$(BootingFromHc)" "YES"
101 boot :: depend
102         $(MAKE) all
103 endif
104
105 binary-dist:
106         $(INSTALL_DIR)                $(BIN_DIST_DIR)/utils/ghc-pkg
107         $(INSTALL_DATA)    Makefile   $(BIN_DIST_DIR)/utils/ghc-pkg/
108         $(INSTALL_PROGRAM) $(HS_PROG) $(BIN_DIST_DIR)/utils/ghc-pkg/
109
110 include $(TOP)/mk/target.mk