1 #-----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.29 2005/03/02 14:09:26 simonmar Exp $
6 include $(TOP
)/mk
/boilerplate.mk
10 # everything needs utils
12 # includes/ needs driver (to easily c.pile mkNativeGen.c)
13 # make depend except in {utils,driver} needs includes
14 # RTS and compiler need includes
18 # Order is important! It's e.g. necessary to descend into include/
19 # before the rest to have a config.h, etc.
21 # If we're booting from .hc files, swap the order
22 # we descend into subdirs - to boot utils must be before driver.
24 ifeq "$(BootingFromHc)" "YES"
25 SUBDIRS
= includes rts docs compiler lib utils driver
27 ifneq "$(ILXized)" "YES"
28 SUBDIRS
= includes lib utils driver docs compiler rts
31 SUBDIRS
= includes lib utils driver docs compiler
35 ifeq ($(IncludeTestDirsInBuild
),YES
)
39 SRC_DIST_FILES
+= configure
41 # Clean everything created by configure:
42 DIST_CLEAN_FILES
+= VERSION config.cache config.status ghc.spec \
43 docs
/users_guide
/ug-book.xml
45 LATE_DIST_CLEAN_FILES
+= mk
/version.mk mk
/config.mk
48 $(RM
) -rf autom4te.cache
50 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
51 # These files need to be in the InstallShield
52 # INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
53 # in the top-level directory of the distribution
54 INSTALL_DATAS
+= ANNOUNCE LICENSE README VERSION
57 include $(TOP
)/mk
/target.mk