diff options
Diffstat (limited to 'testsuite/tests/ghc-regress/module/mod175/Makefile')
-rw-r--r-- | testsuite/tests/ghc-regress/module/mod175/Makefile | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/testsuite/tests/ghc-regress/module/mod175/Makefile b/testsuite/tests/ghc-regress/module/mod175/Makefile deleted file mode 100644 index 7bba7d2026..0000000000 --- a/testsuite/tests/ghc-regress/module/mod175/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -TOP=../../../.. -include $(TOP)/mk/boilerplate.mk -include $(TOP)/mk/test.mk - -clean: - rm -f *.o - rm -f *.hi - rm -f test test2 - -# Test for trac bug #437 (Test2 needs to be recompiled in the second GHC -# invocation as the main-is flag now applies to it). - -mod175: - $(MAKE) clean - '$(TEST_HC)' $(TEST_HC_OPTS) -v0 --make -main-is Test.main Test.hs -o test - '$(TEST_HC)' $(TEST_HC_OPTS) -v0 --make -main-is Test2.main Test2.hs -o test2 - ./test - ./test2 - |