diff options
author | Ian Lynagh <igloo@earth.li> | 2007-09-05 16:06:41 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-09-05 16:06:41 +0000 |
commit | cafb1e0f6bb93fb720e3bb3432c777cd9736bf80 (patch) | |
tree | 40b90c1977d9c5d7f8ab4a269b6ac11f96946d03 /bindisttest | |
parent | 25f84fa7e4b84c3db5ba745a7881c009b778e0b1 (diff) | |
download | haskell-cafb1e0f6bb93fb720e3bb3432c777cd9736bf80.tar.gz |
Fix up bindist creation and publishing
Diffstat (limited to 'bindisttest')
-rw-r--r-- | bindisttest/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bindisttest/Makefile b/bindisttest/Makefile index cfcf13ba0e..c26ca79f68 100644 --- a/bindisttest/Makefile +++ b/bindisttest/Makefile @@ -8,20 +8,18 @@ default_target: all TOP=.. include $(TOP)/mk/boilerplate.mk -INST_DIR = $(FPTOOLS_TOP_ABS)/bindisttest/installed - all: $(RM) -rf installed $(RM) -rf ghc* $(RM) HelloWorld HelloWorld.o HelloWorld.hi output - $(TAR) -jxf ../$(BIN_DIST_TARBALL) + $(TAR) -jxf $(BIN_DIST_TARBALL) ifeq "$(Windows)" "YES" - mv $(BIN_DIST_NAME) $(INST_DIR) + mv $(BIN_DIST_NAME) $(BIN_DIST_INST_DIR) else - cd $(BIN_DIST_NAME) && ./configure --prefix=$(INST_DIR) + cd $(BIN_DIST_NAME) && ./configure --prefix=$(BIN_DIST_INST_DIR) cd $(BIN_DIST_NAME) && make install endif - $(INST_DIR)/bin/ghc --make HelloWorld + $(BIN_DIST_INST_DIR)/bin/ghc --make HelloWorld ./HelloWorld > output $(CONTEXT_DIFF) output expected_output |