diff options
Diffstat (limited to 'testsuite/tests/ghc-regress/driver/T3007/Makefile')
-rw-r--r-- | testsuite/tests/ghc-regress/driver/T3007/Makefile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/testsuite/tests/ghc-regress/driver/T3007/Makefile b/testsuite/tests/ghc-regress/driver/T3007/Makefile deleted file mode 100644 index 516e6f30b9..0000000000 --- a/testsuite/tests/ghc-regress/driver/T3007/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -TOP=../../../.. -include $(TOP)/mk/boilerplate.mk -include $(TOP)/mk/test.mk - -clean: - rm -f A/Setup A/Setup.o A/Setup.hi - rm -f B/Setup B/Setup.o B/Setup.hi - rm -rf A/dist B/dist - rm -f package.conf - -T3007: - $(MAKE) clean - echo '[]' > package.conf - cd A && '$(TEST_HC)' -v0 --make Setup - cd A && ./Setup configure -v0 --with-compiler='$(TEST_HC)' --ghc-pkg-option=--global-conf=../package.conf --ghc-option=-package-conf../package.conf - cd A && ./Setup build -v0 - cd A && ./Setup register --inplace -v0 - cd B && '$(TEST_HC)' -v0 --make Setup - cd B && ./Setup configure -v0 --with-compiler='$(TEST_HC)' --ghc-pkg-option=--global-conf=../package.conf --ghc-option=-package-conf../package.conf - cd B && ./Setup build -v0 - |