update for changes in hetmet Makefile
[ghc-hetmet.git] / utils / ghc-pkg / ghc.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13 # -----------------------------------------------------------------------------
14 # Bootstrapping ghc-pkg
15
16 utils/ghc-pkg_dist_PROG = ghc-pkg$(exeext)
17
18 ifeq "$(BootingFromHc)" "YES"
19
20 inplace/bin/ghc-pkg : utils/ghc-pkg/dist-install/build/tmp/$(utils/ghc-pkg_dist_PROG)$(exeext)
21 ifeq "$(Windows)" "YES"
22         cp $< $@
23 else
24         "$(RM)" $(RM_OPTS) $@
25         echo "#!/bin/sh" >>$@
26         echo "PKGCONF=$(TOP)/$(INPLACE_PACKAGE_CONF)" >>$@
27         echo '$(TOP)/$< --global-conf $$PKGCONF $${1+"$$@"}' >> $@
28         chmod +x $@
29 endif
30
31 else
32
33 $(GHC_PKG_INPLACE) : utils/ghc-pkg/dist/build/$(utils/ghc-pkg_dist_PROG)$(exeext) | $$(dir $$@)/. $(INPLACE_PACKAGE_CONF)/.
34         "$(RM)" $(RM_OPTS) $(INPLACE_PACKAGE_CONF)/*
35 ifeq "$(Windows)" "YES"
36         cp $< $@
37 else
38         "$(RM)" $(RM_OPTS) $@
39         echo "#!/bin/sh" >>$@
40         echo "PKGCONF=$(TOP)/$(INPLACE_PACKAGE_CONF)" >>$@
41         echo '$(TOP)/$< --global-conf $$PKGCONF $${1+"$$@"}' >> $@
42         chmod +x $@
43 endif
44
45 endif
46
47 # depend on ghc-cabal, otherwise we build Cabal twice when building in parallel
48 # The binary package is not warning-clean, so we need a few -fno-warns here.
49 utils/ghc-pkg/dist/build/$(utils/ghc-pkg_dist_PROG)$(exeext): utils/ghc-pkg/Main.hs utils/ghc-pkg/Version.hs $(GHC_CABAL_INPLACE) | bootstrapping/. $$(dir $$@)/.
50         "$(GHC)" $(SRC_HC_OPTS) --make utils/ghc-pkg/Main.hs -o $@ \
51                -no-user-package-conf \
52                -Wall -fno-warn-unused-imports \
53                -DCABAL_VERSION=$(CABAL_VERSION) \
54                -DBOOTSTRAPPING \
55                -odir  bootstrapping \
56                -hidir bootstrapping \
57                -iutils/ghc-pkg \
58                -XCPP -XExistentialQuantification -XDeriveDataTypeable \
59                -ilibraries/Cabal \
60                -ilibraries/filepath \
61                -ilibraries/extensible-exceptions \
62                -ilibraries/hpc \
63                -ilibraries/binary/src \
64                -ilibraries/bin-package-db
65
66
67 utils/ghc-pkg/Version.hs: mk/project.mk
68         "$(RM)" $(RM_OPTS) $@
69         echo "module Version where"                    >> $@
70         echo "version, targetOS, targetARCH :: String" >> $@
71         echo "version    = \"$(ProjectVersion)\""      >> $@
72         echo "targetOS   = \"$(TargetOS_CPP)\""        >> $@
73         echo "targetARCH = \"$(TargetArch_CPP)\""      >> $@
74
75 $(eval $(call clean-target,utils/ghc-pkg,dist,\
76    utils/ghc-pkg/dist \
77    utils/ghc-pkg/Version.hs))
78
79 # -----------------------------------------------------------------------------
80 # Building ghc-pkg with stage 1
81
82 utils/ghc-pkg_dist-install_USES_CABAL = YES
83 utils/ghc-pkg_PACKAGE = ghc-pkg
84
85 utils/ghc-pkg_dist-install_PROG = ghc-pkg
86 utils/ghc-pkg_dist-install_SHELL_WRAPPER = YES
87 utils/ghc-pkg_dist-install_INSTALL_SHELL_WRAPPER = YES
88 utils/ghc-pkg_dist-install_INSTALL_SHELL_WRAPPER_NAME = ghc-pkg-$(ProjectVersion)
89 utils/ghc-pkg_dist-install_INSTALL_INPLACE = NO
90
91 ifeq "$(BootingFromHc)" "YES"
92 utils/ghc-pkg_dist-install_OTHER_OBJS += $(ALL_STAGE1_LIBS) $(ALL_STAGE1_LIBS) $(ALL_STAGE1_LIBS) $(ALL_RTS_LIBS) $(libffi_STATIC_LIB)
93 endif
94
95 $(eval $(call build-prog,utils/ghc-pkg,dist-install,1))
96
97 ifeq "$(Windows)" "NO"
98 install: install_utils/ghc-pkg_link
99
100 .PNONY: install_utils/ghc-pkg_link
101 install_utils/ghc-pkg_link: 
102         $(call INSTALL_DIR,"$(DESTDIR)$(bindir)")
103         "$(RM)" $(RM_OPTS) "$(DESTDIR)$(bindir)/ghc-pkg"
104         $(LN_S) ghc-pkg-$(ProjectVersion) "$(DESTDIR)$(bindir)/ghc-pkg"
105 endif
106