summaryrefslogtreecommitdiff
path: root/ghc/Makefile
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-04-07 08:52:19 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-04-07 08:52:19 +0000
commit422eaf986e456ed0e16647445f7bdcb3018eb6c2 (patch)
tree6e34b44b9caf308c0eccdc9fd25ef1ef39700b3c /ghc/Makefile
parent693342ffbb61e1da4c009059755fa0b9b1396bb8 (diff)
downloadhaskell-422eaf986e456ed0e16647445f7bdcb3018eb6c2.tar.gz
remove the last bits of the ghc/ subdir
Diffstat (limited to 'ghc/Makefile')
-rw-r--r--ghc/Makefile54
1 files changed, 0 insertions, 54 deletions
diff --git a/ghc/Makefile b/ghc/Makefile
deleted file mode 100644
index cacc3f7c8e..0000000000
--- a/ghc/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-#-----------------------------------------------------------------------------
-# $Id: Makefile,v 1.30 2005/03/02 14:35:05 simonmar Exp $
-#
-
-TOP=.
-include $(TOP)/mk/boilerplate.mk
-
-#
-# subdir dependencies:
-# everything needs utils
-# utils needs lib
-# includes/ needs driver (to easily c.pile mkNativeGen.c)
-# make depend except in {utils,driver} needs includes
-# RTS and compiler need includes
-#
-
-#
-# Order is important! It's e.g. necessary to descend into include/
-# before the rest to have a config.h, etc.
-#
-# If we're booting from .hc files, swap the order
-# we descend into subdirs - to boot utils must be before driver.
-#
-ifeq "$(BootingFromHc)" "YES"
-SUBDIRS = includes rts docs compiler lib utils driver
-else
-ifneq "$(ILXized)" "YES"
-SUBDIRS = includes lib utils driver docs compiler rts
-else
-# No RTS for ILX
-SUBDIRS = includes lib utils driver docs compiler
-endif
-endif
-
-SRC_DIST_FILES += configure
-
-# Clean everything created by configure:
-DIST_CLEAN_FILES += VERSION config.cache config.status ghc.spec \
- docs/users_guide/ug-book.xml
-
-# don't clean version.mk: it's needed when cleaning stuff later on
-LATE_DIST_CLEAN_FILES += mk/config.mk
-
-extraclean::
- $(RM) -rf autom4te.cache
-
-ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
-# These files need to be in the InstallShield
-# INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
-# in the top-level directory of the distribution
-INSTALL_DATAS += ANNOUNCE LICENSE README VERSION
-endif
-
-include $(TOP)/mk/target.mk