From cafb1e0f6bb93fb720e3bb3432c777cd9736bf80 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 5 Sep 2007 16:06:41 +0000 Subject: Fix up bindist creation and publishing --- bindisttest/Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'bindisttest') 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 -- cgit v1.2.1