summaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-09-12 11:36:19 +0000
committerIan Lynagh <igloo@earth.li>2008-09-12 11:36:19 +0000
commitf559be1fdb74c5e8e1b76cb5acf5553ff4de2354 (patch)
tree0dd574fb891456b862b07a2d7fff49e6e1df2aad /driver
parentddd3c15b38580dcdc30fcf90ec0eadf8ae013639 (diff)
downloadhaskell-f559be1fdb74c5e8e1b76cb5acf5553ff4de2354.tar.gz
Reinstate the driver/ghc directory, to create a versioned GHC program
e.g. $(bindir)/ghc-6.9.20080911
Diffstat (limited to 'driver')
-rw-r--r--driver/Makefile2
-rw-r--r--driver/ghc/Makefile18
2 files changed, 19 insertions, 1 deletions
diff --git a/driver/Makefile b/driver/Makefile
index 7e87b89061..0eb10c692c 100644
--- a/driver/Makefile
+++ b/driver/Makefile
@@ -7,7 +7,7 @@
TOP=..
include $(TOP)/mk/boilerplate.mk
-SUBDIRS = mangler split ghci
+SUBDIRS = mangler split ghc ghci
INPLACE_PKG_CONF = $(INPLACE_DATA_DIR)/package.conf
# Used to signal that we are inplace, as opposed to installed:
diff --git a/driver/ghc/Makefile b/driver/ghc/Makefile
new file mode 100644
index 0000000000..4eeb3f96ca
--- /dev/null
+++ b/driver/ghc/Makefile
@@ -0,0 +1,18 @@
+TOP=../..
+include $(TOP)/mk/boilerplate.mk
+
+ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
+SCRIPT_DIR = $(DESTDIR)$(bindir)
+SCRIPT_BASE = ghc
+SCRIPT_VERSIONED_BASE = $(SCRIPT_BASE)-$(ProjectVersion)
+SCRIPT = $(SCRIPT_DIR)/$(SCRIPT_BASE)
+SCRIPT_VERSIONED = $(SCRIPT_DIR)/$(SCRIPT_VERSIONED_BASE)
+
+install::
+ mv $(SCRIPT) $(SCRIPT_VERSIONED)
+ ln -s $(SCRIPT_VERSIONED_BASE) $(SCRIPT)
+endif
+
+include $(TOP)/mk/bindist.mk
+
+include $(TOP)/mk/target.mk