Ignore .rej files
[ghc-hetmet.git] / Makefile
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13 ifeq "$(wildcard distrib/)" ""
14
15 # We're in a bindist
16
17 .PHONY: default
18 default:
19         @echo 'Run "make install" to install'
20         @false
21
22 .PHONY: install show
23 install show:
24         $(MAKE) -r --no-print-directory -f ghc.mk $@ BINDIST=YES NO_INCLUDE_DEPS=YES
25
26 else
27
28 default : all
29         @:
30
31 # For help, type 'make help'
32 .PHONY: help
33 help :
34         @cat MAKEHELP
35
36 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
37 -include mk/config.mk
38 else
39 include mk/config.mk
40 ifeq "$(ProjectVersion)" ""
41 $(error Please run ./configure first)
42 endif
43 endif
44
45 include mk/custom-settings.mk
46
47 # No need to update makefiles for these targets:
48 REALGOALS=$(filter-out binary-dist binary-dist-prep bootstrapping-files framework-pkg clean clean_% distclean maintainer-clean show help install-docs test fulltest,$(MAKECMDGOALS))
49
50 # configure touches certain files even if they haven't changed.  This
51 # can mean a lot of unnecessary recompilation after a re-configure, so
52 # here we cache the old versions of these files so we can restore the
53 # timestamps.
54 %.old:  %
55         @set -x && test -f $@ && cmp -s $< $@ || cp -p $< $@
56         touch -r $@ $<
57
58
59 # NB. not the same as saying '%: ...', which doesn't do the right thing:
60 # it does nothing if we specify a target that already exists.
61 .PHONY: $(REALGOALS)
62 $(REALGOALS) all: mk/config.mk.old mk/project.mk.old compiler/ghc.cabal.old
63 ifneq "$(OMIT_PHASE_0)" "YES"
64         @echo "===--- building phase 0"
65         $(MAKE) -r --no-print-directory -f ghc.mk phase=0 phase_0_builds
66 endif
67 ifneq "$(OMIT_PHASE_1)" "YES"
68         @echo "===--- building phase 1"
69         $(MAKE) -r --no-print-directory -f ghc.mk phase=1 phase_1_builds
70 endif
71         @echo "===--- building final phase"
72         $(MAKE) -r --no-print-directory -f ghc.mk phase=final $@
73
74 binary-dist: binary-dist-prep
75 ifeq "$(mingw32_TARGET_OS)" "1"
76         mv bindistprep/*.exe .
77 endif
78         mv bindistprep/*.tar.bz2 .
79
80 binary-dist-prep:
81 ifeq "$(mingw32_TARGET_OS)" "1"
82         $(MAKE) -r --no-print-directory -f ghc.mk windows-binary-dist-prep
83         $(MAKE) -r --no-print-directory -f ghc.mk windows-installer
84 else
85         rm -f bindist-list
86         $(MAKE) -r --no-print-directory -f ghc.mk bindist BINDIST=YES
87         $(MAKE) -r --no-print-directory -f ghc.mk unix-binary-dist-prep
88 endif
89
90 clean distclean maintainer-clean:
91         $(MAKE) -r --no-print-directory -f ghc.mk $@ CLEANING=YES
92         test ! -d testsuite || $(MAKE) -C testsuite $@
93
94 $(filter clean_%, $(MAKECMDGOALS)) : clean_% :
95         $(MAKE) -r --no-print-directory -f ghc.mk $@ CLEANING=YES
96
97 bootstrapping-files show:
98         $(MAKE) -r --no-print-directory -f ghc.mk $@
99
100 ifeq "$(darwin_TARGET_OS)" "1"
101 framework-pkg:
102         $(MAKE) -C distrib/MacOS $@
103 endif
104
105 # install-docs is a historical target that isn't supported in GHC 6.12. See #3662.
106 install-docs:
107         @echo "The install-docs target is not supported in GHC 6.12.1 and later."
108         @echo "'make install' now installs everything, including documentation."
109         @exit 1
110
111 # If the user says 'make A B', then we don't want to invoke two
112 # instances of the rule above in parallel:
113 .NOTPARALLEL:
114
115 endif
116
117 .PHONY: test
118 test:
119         $(MAKE) -C testsuite/tests/ghc-regress CLEANUP=1 OUTPUT_SUMMARY=../../../testsuite_summary.txt fast
120
121 .PHONY: fulltest
122 fulltest:
123         $(MAKE) -C testsuite/tests/ghc-regress CLEANUP=1 OUTPUT_SUMMARY=../../../testsuite_summary.txt
124