From f2853b4bb7b07f1ad7774c60ec9c5ed7ccfca772 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 19 Sep 2008 15:30:10 +0000 Subject: [PATCH] Create runhaskell as well as runghc --- driver/Makefile | 2 +- driver/runhaskell/Makefile | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 driver/runhaskell/Makefile diff --git a/driver/Makefile b/driver/Makefile index 0eb10c6..5207214 100644 --- a/driver/Makefile +++ b/driver/Makefile @@ -7,7 +7,7 @@ TOP=.. include $(TOP)/mk/boilerplate.mk -SUBDIRS = mangler split ghc ghci +SUBDIRS = mangler split ghc ghci runhaskell INPLACE_PKG_CONF = $(INPLACE_DATA_DIR)/package.conf # Used to signal that we are inplace, as opposed to installed: diff --git a/driver/runhaskell/Makefile b/driver/runhaskell/Makefile new file mode 100644 index 0000000..585e8bc --- /dev/null +++ b/driver/runhaskell/Makefile @@ -0,0 +1,14 @@ +TOP=../.. +include $(TOP)/mk/boilerplate.mk + +ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" +install:: + cp $(DESTDIR)$(bindir)/runghc.exe $(DESTDIR)$(bindir)/runhaskell.exe +else +install:: + ln -s runghc $(DESTDIR)$(bindir)/runhaskell +endif + +include $(TOP)/mk/bindist.mk + +include $(TOP)/mk/target.mk -- 1.7.10.4