[project @ 1997-03-20 22:26:00 by sof]
[ghc-hetmet.git] / ghc / includes / Makefile
1 #
2 # ghc/includes
3 #
4
5 TOP = ..
6 include $(TOP)/mk/boilerplate.mk
7
8 #
9 # Just to make sure, no ways stuff in here, please.
10 #
11 WAYS=
12
13 # De-litted header files
14 LH_FILES=$(wildcard *.lh)
15
16 DELIT_H_FILES = $(patsubst %.lh, %.h, $(LH_FILES))
17
18 #
19 # Header file built from the configure script's findings
20 #
21 H_CONFIG = config.h
22
23
24 # Everything else
25 H_FILES = stgdefs.h rtsdefs.h StgDirections.h StgMachDeps.h error.h \
26   ieee-flpt.h gmp.h LLC.h HLC.h
27
28 ALL_FILES = $(DELIT_H_FILES) $(H_FILES)
29 ifeq ($(GhcWithNativeCodeGen),YES)
30 ALL_FILES += $(TARGETPLATFORM).h
31 endif
32
33
34 #
35 # The fptools configure script creates the configuration header file 
36 # and puts it in fptools/mk/config.h. We copy it down to here, prepending
37 # some make variables specifying cpp platform variables.
38 #
39 $(H_CONFIG) : $(FPTOOLS_TOP)/mk/config.h
40
41 $(H_CONFIG) :
42         @echo "Creating $@..."
43         @$(RM) $@
44         @echo "#define HostPlatform_TYPE   $(HostPlatform_CPP)"  > $@
45         @echo "#define TargetPlatform_TYPE $(HostPlatform_CPP)" >> $@
46         @echo "#define BuildPlatform_TYPE  $(HostPlatform_CPP)" >> $@
47         @echo >> $@
48         @echo "#define $(HostPlatform_CPP)_HOST         1" >> $@
49         @echo "#define $(HostPlatform_CPP)_TARGET       1" >> $@
50         @echo "#define $(HostPlatform_CPP)_BUILD        1" >> $@
51         @echo >> $@
52         @echo "#define $(HostArch_CPP)_HOST_ARCH        1" >> $@
53         @echo "#define $(HostArch_CPP)_TARGET_ARCH      1" >> $@
54         @echo "#define $(HostArch_CPP)_BUILD_ARCH       1" >> $@
55         @echo >> $@
56         @echo "#define $(HostOS_CPP)_HOST_OS            1" >> $@
57         @echo "#define $(HostOS_CPP)_TARGET_OS          1" >> $@  
58         @echo "#define $(HostOS_CPP)_BUILD_OS           1" >> $@
59         @echo >> $@
60         @echo "#define $(HostVendor_CPP)_HOST_VENDOR    1" >> $@
61         @echo "#define $(HostVendor_CPP)_TARGET_VENDOR  1" >> $@
62         @echo "#define $(HostVendor_CPP)_BUILD_VENDOR   1" >> $@
63         @cat $(FPTOOLS_TOP)/mk/$@ >> $@
64         @echo "Done."
65
66 $(TARGETPLATFORM).h : mkNativeHdr
67         $(RM) $@
68         ./mkNativeHdr > $@ || ( rm $@ && exit 1 )
69
70 #
71 # Building mkNativeHdr using the Haskell compiler
72 # to do it (ghc really).
73 #
74 mkNativeHdr : $(HLIT) $(HFILES) mkNativeHdr.c
75         $(HC) -c mkNativeHdr.c
76         $(CC) $(CFLAGS) -o mkNativeHdr mkNativeHdr.c
77
78 all :: $(H_CONFIG) $(ALL_FILES)
79
80 #
81 # boot setup:
82 #
83 # When building the dependencies in runtime/ , lib/ we need to get
84 # at the de-litted versions of includes/, hence we arrange the
85 # `depend' target to depend on `all'.
86 #
87 boot :: all
88
89 #
90 # Install all header files
91 #
92 # Hackily set the install destination here:
93 #
94 # Note: we keep per-platform copies of all the include files
95 # (ditto for interface files). This is not *really* needed, but
96 # it gives (perhaps) a cleaner binary dist structure..might change.
97 #
98 datadir:=$(libdir)/includes
99 INSTALL_DATAS += $(DELIT_H_FILES) $(H_FILES) $(TARGETPLATFORM).h $(H_CONFIG)
100
101 #
102 # `make clean' settings:
103 #
104 CLEAN_FILES += $(DELIT_H_FILES) $(H_CONFIG) mkNativeHdr.o mkNativeHdr
105
106 ifeq ($(GhcWithNativeCodeGen),YES)
107 CLEAN_FILES += $(TARGETPLATFORM).h
108 endif
109
110 #
111 # Finally, slurp in the standard targets.
112 #
113 include $(TOP)/mk/target.mk