X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fcabal.mk;h=3d525d77390643533c5a797f7de0d0fcddb0995e;hb=f38871fdd92e466cbbc7eb08e226c4213bcbd7d6;hp=fbe8953a8dd2e5e5f717229dc09a496c618cb875;hpb=08bcdbe3ae0da0d2d670a47dfda34547d9c36d1a;p=ghc-hetmet.git diff --git a/mk/cabal.mk b/mk/cabal.mk index fbe8953..3d525d7 100644 --- a/mk/cabal.mk +++ b/mk/cabal.mk @@ -2,9 +2,7 @@ include $(TOP)/mk/cabal-flags.mk include $(TOP)/mk/bindist.mk -# XXX We would like to turn this on, but Cabal generates paths files -# that are not -Wall clean! -# SRC_HC_OPTS += -Wall +SRC_HC_OPTS += -Wall ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32" INSTALL_FLAGS = @@ -16,14 +14,14 @@ INSTALL_FLAGS = endif endif -# Tell stage1 to make a dynamically-linked binary, but no wrapper. We assume +# Tell stage2 to make a dynamically-linked binary, but no wrapper. We assume # that in an installation the shared libs will be installed somewhere that # the system can find them. ifeq "$(BuildSharedLibs)" "YES" DYN_FLAGS = --ghc-option=-dynamic --ghc-option=-dynload --ghc-option=deploy endif -.PHONY: default all with-bootstrapping-compiler with-stage-1 clean distclean +.PHONY: default all with-bootstrapping-compiler with-stage-2 clean distclean default all: with-bootstrapping-compiler @@ -36,25 +34,29 @@ with-bootstrapping-compiler: $(CABAL) build --distpref dist-inplace $(BUILD_FLAGS) $(CABAL) install --distpref dist-inplace $(INSTALL_FLAGS) -with-stage-1: +with-stage-2: $(CABAL) configure --distpref dist-install \ $(INSTALL_DIRS_CONFIGURE_FLAGS) \ - $(USE_STAGE1_CONFIGURE_FLAGS) \ + $(USE_STAGE2_CONFIGURE_FLAGS) \ $(COMMON_CONFIGURE_FLAGS) \ - $(EXTRA_STAGE1_CONFIGURE_FLAGS) + $(EXTRA_STAGE2_CONFIGURE_FLAGS) $(CABAL) build --distpref dist-install $(DYN_FLAGS) $(BUILD_FLAGS) install: - $(INSTALL_PACKAGE) install UNUSED UNUSED '$(DESTDIR)' '$(prefix)' \ + $(INSTALL_PACKAGE) install \ + '$(GHC_PKG_INSTALL_PROG)' \ + '$(DESTDIR)$(datadir)/package.conf' \ + '$(DESTDIR)' '$(prefix)' \ '$(prefix)' '$(bindir)' '$(libdir)' \ - '$(libexecdir)' '$(dynlibdir)' '$(datadir)' \ - '$(docdir)' '$(htmldir)' '$(haddockdir)' \ + '$(libexecdir)' '$(dynlibdir)' '$(datadir)' \ + '$(docdir)' '$(htmldir)' '$(haddockdir)' \ --distpref dist-install \ $(INSTALL_FLAGS) clean: -$(CABAL) clean --distpref dist-inplace -$(CABAL) clean --distpref dist-install + $(RM) -rf install-inplace ifneq "$(EXTRA_CLEAN)" "" $(RM) -f $(EXTRA_CLEAN) endif