[project @ 2004-11-17 18:31:08 by josefs]
[ghc-hetmet.git] / ghc / lib / compat / Makefile
1 TOP=../..
2 include $(TOP)/mk/boilerplate.mk
3
4 ALL_DIRS = \
5         Data \
6         Compat \
7         Distribution \
8         Distribution/Compat \
9         System \
10         cbits
11
12 LIBRARY = libghccompat.a
13
14 # Just to silence warnings
15 MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
16
17 UseGhcForCc = YES
18
19 ghc_603_plus = $(shell if (test $(GhcCanonVersion) -ge 603); then echo YES; else echo NO; fi)
20
21 ifeq "$(ghc_603_plus)" "YES"
22 # These modules are all provided in GHC 6.3+
23 EXCLUDED_SRCS += \
24         Data/Version.hs \
25         System/FilePath.hs \
26         Distribution/Compat/Error.hs \
27         Distribution/Compat/ReadP.hs \
28         Distribution/Extension.hs \
29         Distribution/InstalledPackageInfo.hs \
30         Distribution/License.hs \
31         Distribution/Package.hs \
32         Distribution/ParseUtils.hs \
33         Distribution/Setup.hs \
34         Distribution/Version.hs
35 endif
36
37 # Make the #includes in the stubs independent of the current location
38 SRC_HC_OPTS += -I$(FPTOOLS_TOP)/libraries
39
40 SRC_HC_OPTS +=  -fglasgow-exts
41
42 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
43 Compat/Directory_HC_OPTS += -\#include shlobj.h
44 endif
45
46 # libghccompat is needed to build ghc-pkg, which is built during 'make boot',
47 # so we must build this library during 'make boot' too.
48 # Do a recursive 'make all' after generating dependencies, because this
49 # will work with 'make -j'.
50 ifneq "$(BootingFromHc)" "YES"
51 boot :: depend
52         $(MAKE) all
53 endif
54
55 include $(TOP)/mk/target.mk