X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=utils%2Fghc-pkg%2FMakefile;h=3c96a137cd7637d9d80e77afc601a88157455faf;hb=1f7ab811c4421458568b0ed900b496192fee885b;hp=6fba1c814bbd25f458fa65a7a0376751fd71f11a;hpb=eed437cdefb952e6c70e58012b23d436e74710af;p=ghc-hetmet.git diff --git a/utils/ghc-pkg/Makefile b/utils/ghc-pkg/Makefile index 6fba1c8..3c96a13 100644 --- a/utils/ghc-pkg/Makefile +++ b/utils/ghc-pkg/Makefile @@ -1,60 +1,15 @@ - -TOP=../.. -include $(TOP)/mk/boilerplate.mk -include $(TOP)/mk/cabal-flags.mk - -SRC_HC_OPTS += -Wall - -# XXX From old Makefile: -# SRC_HC_OPTS += -cpp -Wall -fno-warn-name-shadowing -fno-warn-unused-matches - -ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32" -INSTALL_FLAGS = -else -INSTALL_FLAGS = --enable-shell-wrappers -endif - -default all: with-bootstrapping-compiler - -with-bootstrapping-compiler: Version.hs - $(CABAL) configure --distpref dist-inplace \ - $(INPLACE_DIRS_CONFIGURE_FLAGS) \ - $(USE_BOOT_CONFIGURE_FLAGS) \ - $(COMMON_CONFIGURE_FLAGS) - $(CABAL) build --distpref dist-inplace $(BUILD_FLAGS) - $(CABAL) install --distpref dist-inplace $(INSTALL_FLAGS) - -with-stage-1: Version.hs - $(CABAL) configure --distpref dist-install \ - $(INSTALL_DIRS_CONFIGURE_FLAGS) \ - $(USE_STAGE1_CONFIGURE_FLAGS) \ - $(COMMON_CONFIGURE_FLAGS) - $(CABAL) build --distpref dist-install $(BUILD_FLAGS) - -install: - $(INSTALL_PACKAGE) install UNUSED UNUSED '$(DESTDIR)' '$(prefix)' \ - '$(prefix)' '$(bindir)' '$(libdir)' \ - '$(libexecdir)' '$(dynlibdir)' '$(datadir)' \ - '$(docdir)' '$(htmldir)' '$(haddockdir)' - --distpref dist-install \ - $(INSTALL_FLAGS) - -clean: distclean - -distclean: - -$(CABAL) clean --distpref dist-inplace - -$(CABAL) clean --distpref dist-install - $(RM) -f Version.hs - -# XXX fix binary-dist - -##### Here down is unique to ghc-pkg - -Version.hs: Makefile $(TOP)/mk/config.mk - $(RM) -f Version.hs - echo "module Version where" >> Version.hs - echo "version, targetOS, targetARCH :: String" >> Version.hs - echo "version = \"$(ProjectVersion)\"" >> Version.hs - echo "targetOS = \"$(TargetOS_CPP)\"" >> Version.hs - echo "targetARCH = \"$(TargetArch_CPP)\"" >> Version.hs - +# ----------------------------------------------------------------------------- +# +# (c) 2009 The University of Glasgow +# +# This file is part of the GHC build system. +# +# To understand how the build system works and how to modify it, see +# http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture +# http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying +# +# ----------------------------------------------------------------------------- + +dir = utils/ghc-pkg +TOP = ../.. +include $(TOP)/mk/sub-makefile.mk