X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=utils%2Frunghc%2FMakefile;h=7ea6c09ee345192994acfa6f76f2da77b804b683;hb=a8427a4125e9b78e88a487eeabf018f1c6e8bc08;hp=c1a94c799a3b6ca429b9f83410dd8a57b35a69aa;hpb=bc49cbd35e1b9a75ef05de610f845de7bbfef90d;p=ghc-hetmet.git diff --git a/utils/runghc/Makefile b/utils/runghc/Makefile index c1a94c7..7ea6c09 100644 --- a/utils/runghc/Makefile +++ b/utils/runghc/Makefile @@ -14,19 +14,11 @@ include $(GHC_COMPAT_DIR)/compat.mk # $(GhcHcOpts) because it is linked to the compiler, and hence # we must also build with $(GhcHcOpts) here: SRC_HC_OPTS += $(GhcHcOpts) $(GhcStage1HcOpts) +SRC_HC_OPTS += -Wall -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