diff options
author | Ian Lynagh <igloo@earth.li> | 2008-09-19 15:30:10 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-09-19 15:30:10 +0000 |
commit | f2853b4bb7b07f1ad7774c60ec9c5ed7ccfca772 (patch) | |
tree | 41ed67375972b897ca6a4b7ace0a66860054521d /driver/runhaskell/Makefile | |
parent | c3062251034f54944061e816ed018b0b2db1b849 (diff) | |
download | haskell-f2853b4bb7b07f1ad7774c60ec9c5ed7ccfca772.tar.gz |
Create runhaskell as well as runghc
Diffstat (limited to 'driver/runhaskell/Makefile')
-rw-r--r-- | driver/runhaskell/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/driver/runhaskell/Makefile b/driver/runhaskell/Makefile new file mode 100644 index 0000000000..585e8bcc8d --- /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 |