Fix bindist creation
[ghc-hetmet.git] / utils / runghc / Makefile
index 90e4949..1a176a0 100644 (file)
@@ -13,20 +13,11 @@ include $(GHC_COMPAT_DIR)/compat.mk
 # This is required because libghccompat.a must be built with
 # $(GhcHcOpts) because it is linked to the compiler, and hence
 # we must also build with $(GhcHcOpts) here:
-SRC_HC_OPTS += $(GhcHcOpts)
+SRC_HC_OPTS += $(GhcHcOpts) $(GhcStage1HcOpts)
 
-all :: runhaskell
-
-runhaskell : $(HS_PROG)
-       $(CP) $< runhaskell$(exeext)
-
-CLEAN_FILES += runhaskell
-
-# Only install runhaskell if there isn't already one installed
-ifneq "$(findstring install, $(MAKECMDGOALS))" ""
-ifeq "$(wildcard $(bindir)/runhaskell)" ""
-INSTALL_PROGS += runhaskell$(exeext)
-endif
-endif
+binary-dist:
+       $(INSTALL_DIR)                $(BIN_DIST_DIR)/utils/runghc
+       $(INSTALL_DATA)    Makefile   $(BIN_DIST_DIR)/utils/runghc/
+       $(INSTALL_PROGRAM) $(HS_PROG) $(BIN_DIST_DIR)/utils/runghc/
 
 include $(TOP)/mk/target.mk