Massive patch for the first months work adding System FC to GHC #15
[ghc-hetmet.git] / utils / Makefile
1 TOP=..
2 include $(TOP)/mk/boilerplate.mk
3
4 ifneq "$(BIN_DIST_NAME)" ""
5 # We're doing a binary-dist, descend into a subset of the dirs.
6 SUBDIRS = hp2ps unlit
7 else
8 ifeq "$(BootingFromHc)" "YES"
9 SUBDIRS = mkdependC mkdirhier runstdtest genapply genprimopcode ghc-pkg unlit
10 else
11 SUBDIRS = mkdependC mkdirhier runstdtest ghc-pkg hasktags hp2ps hsc2hs \
12           parallel prof unlit genprimopcode genapply runghc
13 endif
14 endif
15
16 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
17 SUBDIRS += touchy
18 endif
19
20 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
21 # lndir doesn't build on Windows
22 SUBDIRS += lndir
23 endif
24
25
26 # Utils that we don't build by default:
27 #       nofib-analyse
28
29 # Utils that are old and/or bitrotted:
30 #       stat2resid
31 #       debugNCG
32 #       ext-core
33 #       genargs
34 #       heap-view
35 #       pvm
36 #       verbatim
37 #       ltx
38 #       hstags
39
40 # "heap-view" is not in the list because (a) it requires
41 #  a Haskell compiler (which you may not have yet), and (b) you are
42 #  unlikely to want it desperately.  It is easy to build once you have
43 #  a Haskell compiler and if you want it.
44
45 include $(TOP)/mk/target.mk