[project @ 1999-10-29 13:54:42 by sof]
[ghc-hetmet.git] / ghc / lib / Makefile
1 #################################################################################
2 #
3 #                           ghc/lib/Makefile
4 #
5 #               Makefile for building the GHC Prelude libraries umpteen ways
6 #
7 #       
8 #################################################################################
9
10 TOP = ..
11 include $(TOP)/mk/boilerplate.mk
12
13 # posix must be before misc.
14
15 ifeq "$(GhcWithHscBuiltViaC)" "YES"
16 SUBDIRS = std exts
17 else
18 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
19 SUBDIRS = std exts concurrent posix misc
20 else
21 SUBDIRS = std exts concurrent misc
22 endif
23 endif
24
25 include $(TOP)/mk/target.mk