diff options
Diffstat (limited to 'bindisttest/ghc.mk')
-rw-r--r-- | bindisttest/ghc.mk | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/bindisttest/ghc.mk b/bindisttest/ghc.mk deleted file mode 100644 index b1bd16d8ce..0000000000 --- a/bindisttest/ghc.mk +++ /dev/null @@ -1,55 +0,0 @@ -# ----------------------------------------------------------------------------- -# -# (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 -# https://gitlab.haskell.org/ghc/ghc/wikis/building/architecture -# https://gitlab.haskell.org/ghc/ghc/wikis/building/modifying -# -# ----------------------------------------------------------------------------- - -ifeq "$(TEST_PREP)" "YES" -BIN_DIST_TEST_TAR_COMP = $(BIN_DIST_PREP_TAR_COMP) -else -BIN_DIST_TEST_TAR_COMP = $(BIN_DIST_TAR_COMP) -endif - -.PHONY: test_bindist -test_bindist: - "$(RM)" $(RM_OPTS_REC) bindisttest/$(BIN_DIST_INST_SUBDIR) - "$(RM)" $(RM_OPTS_REC) bindisttest/a - "$(RM)" $(RM_OPTS) bindisttest/HelloWorld - "$(RM)" $(RM_OPTS) bindisttest/HelloWorld.o - "$(RM)" $(RM_OPTS) bindisttest/HelloWorld.hi - "$(RM)" $(RM_OPTS) bindisttest/output -# We use the a/b/c subdirectory as configure looks for install-sh in -# . .. ../.. and we don't want it to find the build system's install-sh. -# -# NB. tar has funny interpretation of filenames sometimes (thinking -# c:/foo is a remote file), so it's safer to bzip and then pipe into -# tar rather than using tar -xjf: - mkdir bindisttest/a - mkdir bindisttest/a/b - mkdir bindisttest/a/b/c - cd bindisttest/a/b/c/ && $(TAR_COMP_CMD) -cd ../../../../$(BIN_DIST_TEST_TAR_COMP) | $(TAR_CMD) -xf - - $(SHELL) bindisttest/checkBinaries.sh $(ProjectVersion) -ifeq "$(Windows_Host)" "YES" - mv bindisttest/a/b/c/$(BIN_DIST_NAME) $(BIN_DIST_INST_DIR) -else - cd bindisttest/a/b/c/$(BIN_DIST_NAME) && ./configure --prefix=$(TOP)/$(BIN_DIST_INST_DIR) CC="$(CC)" - cd bindisttest/a/b/c/$(BIN_DIST_NAME) && $(MAKE) install -endif -ifeq "$(GhcProfiled)" "NO" - $(BIN_DIST_INST_DIR)/bin/runghc bindisttest/HelloWorld > bindisttest/output - $(CONTEXT_DIFF) bindisttest/output bindisttest/expected_output -endif - $(BIN_DIST_INST_DIR)/bin/ghc --make bindisttest/HelloWorld - bindisttest/HelloWorld > bindisttest/output - $(CONTEXT_DIFF) bindisttest/output bindisttest/expected_output -# Without --no-user-package-db we might pick up random packages from ~/.ghc - $(BIN_DIST_INST_DIR)/bin/ghc-pkg check --no-user-package-db - -$(eval $(call clean-target,bindisttest,all,$(BIN_DIST_INST_DIR) $(wildcard bindisttest/a/b/c/*) bindisttest/HelloWorld bindisttest/HelloWorld.o bindisttest/HelloWorld.hi bindisttest/output)) - |