e5b21150c248ba2e0a86ccc02f77aa64dde87e41
[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
23 install:
24         $(MAKE) -r --no-print-directory -f ghc.mk install BINDIST=YES NO_INCLUDE_DEPS=YES
25
26 .PHONY: show
27 show:
28         $(MAKE) -r --no-print-directory -f ghc.mk $@
29
30 else
31
32 default : all
33         @:
34
35 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
36 -include mk/config.mk
37 else
38 include mk/config.mk
39 ifeq "$(ProjectVersion)" ""
40 $(error Please run ./configure first)
41 endif
42 endif
43
44 include mk/custom-settings.mk
45
46 # No need to update makefiles for these targets:
47 REALGOALS=$(filter-out framework-pkg clean clean_% distclean maintainer-clean show,$(MAKECMDGOALS))
48
49 # NB. not the same as saying '%: ...', which doesn't do the right thing:
50 # it does nothing if we specify a target that already exists.
51 .PHONY: $(REALGOALS)
52 $(REALGOALS) all:
53         @echo "===--- updating makefiles phase 0"
54         $(MAKE) -r --no-print-directory -f ghc.mk phase=0 just-makefiles
55         @echo "===--- updating makefiles phase 1"
56         $(MAKE) -r --no-print-directory -f ghc.mk phase=1 just-makefiles
57         @echo "===--- updating makefiles phase 2"
58         $(MAKE) -r --no-print-directory -f ghc.mk phase=2 just-makefiles
59         @echo "===--- updating makefiles phase 3"
60         $(MAKE) -r --no-print-directory -f ghc.mk phase=3 just-makefiles
61         @echo "===--- finished updating makefiles"
62         $(MAKE) -r --no-print-directory -f ghc.mk $@
63
64 binary-dist:
65         rm -f bindist-list
66         $(MAKE) -r --no-print-directory -f ghc.mk bindist BINDIST=YES
67         $(MAKE) -r --no-print-directory -f ghc.mk binary-dist
68
69 clean distclean maintainer-clean:
70         $(MAKE) -r --no-print-directory -f ghc.mk $@
71         test ! -d testsuite || $(MAKE) -C testsuite $@
72
73 $(filter clean_%, $(MAKECMDGOALS)) : clean_% :
74         $(MAKE) -r --no-print-directory -f ghc.mk $@
75
76 show:
77         $(MAKE) -r --no-print-directory -f ghc.mk $@
78
79 ifeq "$(darwin_TARGET_OS)" "1"
80 framework-pkg:
81         $(MAKE) -C distrib/MacOS $@
82 endif
83
84 # If the user says 'make A B', then we don't want to invoke two
85 # instances of the rule above in parallel:
86 .NOTPARALLEL:
87
88 endif
89