[project @ 2001-05-24 10:46:08 by simonmar]
[ghc-hetmet.git] / mk / paths.mk
1 #################################################################################
2 #
3 #                           paths.mk
4 #
5 #       This file defines Make variables for standard directories
6 #       and file lists
7 #
8 #################################################################################
9
10
11 #-----------------------------------------------------------------
12 #
13 # Installation setup
14 #
15
16 #-----------------------------------------------------------------------------
17 # install configuration
18 #
19 # The install standard target is guided by the following four variables
20 #
21 #  INSTALL_PROGS    (installed in $(bindir))
22 #  INSTALL_LIBS     (installed in $(libdir))
23 #  INSTALL_LIBEXECS (installed in $(libexecdir))
24 #  INSTALL_DATAS    (installed in $(datadir))
25 #
26 # see target.mk for more information.
27 #
28
29 #
30 # Setting user/group ownership for the installed entities
31 #
32 # this stuff about "who" does the installing doesn't have make vars
33 # as it is not intended to be run-time changeable.
34 #
35 ifneq "$(OWNER)" ""
36 INSTALL_OWNER   = -o $(OWNER)
37 else
38 INSTALL_OWNER   =
39 endif
40
41 ifneq "$(GROUP)" ""
42 INSTALL_GROUP   = -g $(GROUP)
43 else
44 INSTALL_GROUP   =
45 endif
46
47 SRC_INSTALL_OPTS += $(INSTALL_OWNER) $(INSTALL_GROUP)
48
49 #
50 # Invocations of `install' for the three different classes
51 # of targets:
52 #
53
54 INSTALL_PROGRAM = $(INSTALL) -m 755
55 INSTALL_SCRIPT  = $(INSTALL) -m 755
56 INSTALL_DATA    = $(INSTALL) -m 644
57 INSTALL_DIR     = $(FPTOOLS_TOP)/glafp-utils/mkdirhier/mkdirhier
58
59 #
60 # The install variables does not have any defaults,
61 # what files to install have to be specified in the Makefiles.
62
63 #INSTALL_PROGS += $(HS_PROG) $(C_PROG)
64 #INSTALL_LIBS  += $(LIBRARY)
65 #INSTALL_DATAS += $(HS_IFACES)
66
67 #################################################################################
68 #
69 #               Standard variable names
70 #
71 #################################################################################
72
73 #
74 # The fptools mk setup defines a set of standard names which are used by the standard
75 # targets provided by mk. One example of this is the use of standard names
76 # for specifying what files to compile, their intermediate/object code, and
77 # the name of the final executable. Based on the settings of these variables, the
78 # standard targets will generate/expand rules that automatically compile and
79 # link your program.
80 #
81 # The general rules:
82 #   
83 #   SRCS - sources, might be prefixed to indicate what type of source
84 #          they are.
85 #   OBJS - object files (possibly prefixed).
86 #
87 #   PROG - name of final executable
88 #
89 #
90 #
91 # BOOT_SRCS: list of machine generated Haskell modules.
92 # HS_SRCS:   list of Haskell modules you want to compile.
93 #             (also use by depend rule).
94 # HS_OBJS:   list of corresponding object files
95 # HS_PROG:   program that is ultimately linked.
96 # HS_IFACES: list of interface files generated
97 #             (caveat: assuming no funny use of -hisuf and that
98 #               file name and module name match)
99
100 SRCS     = $(sort $(wildcard *.lhs *.hs *.c *.prl *.lprl *.lit *.verb) \
101                   $(HSC_HS_SRCS) $(HSC_C_SRCS) )
102
103 HSC_SRCS    = $(wildcard *.hsc)
104 HSC_HS_SRCS = $(patsubst %.hsc,%.hs,$(HSC_SRCS))
105 HSC_C_SRCS  = $(patsubst %.hsc,%_hsc.c,$(HSC_SRCS))
106 HSC_C_OBJS  = $(patsubst %.hsc,%_hsc.o,$(HSC_SRCS))
107
108 HS_SRCS     = $(filter %.lhs %.hs %.hc,$(sort $(SRCS) $(BOOT_SRCS)))
109 HS_OBJS     = $(addsuffix .$(way_)o,$(basename $(HS_SRCS)))
110 HS_HCS      = $(addsuffix .$(way_)hc,$(basename $(HS_SRCS)))
111 HS_SS       = $(addsuffix .$(way_)s,$(basename $(HS_SRCS)))
112 HS_IFACES   = $(addsuffix .$(way_)hi,$(basename $(HS_SRCS)))
113
114 C_SRCS      = $(filter %.c,$(SRCS)) 
115 C_OBJS      = $(addsuffix .$(way_)o,$(basename $(C_SRCS)))
116
117 # SCRIPT_SRCS:  list of raw script files (in literate form)
118 # SCRIPT_OBJS:  de-litted scripts
119 SCRIPT_SRCS=$(filter %.lprl,$(SRCS))
120 SCRIPT_OBJS=$(addsuffix .prl,$(basename $(SCRIPT_SRCS)))
121
122 OBJS=$(HS_OBJS) $(C_OBJS) $(SCRIPT_OBJS)
123
124 #
125 # Note that as long as you use the standard variables for setting
126 # which C & Haskell programs you want to work on, you don't have
127 # to set any of the clean variables - the default should do the Right
128 # Thing.
129 #
130
131 #------------------------------------------------------------------
132 #
133 # make depend defaults
134 #
135 # The default set of files for the dependency generators to work on
136 # is just their source equivalents.
137
138
139 ifneq "$(BootingFromHc)" "YES"
140 MKDEPENDHS_SRCS=$(HS_SRCS)
141 else
142 MKDEPENDHS_SRCS=
143 endif
144
145 MKDEPENDC_SRCS=$(C_SRCS) 
146
147 #------------------------------------------------------------------
148 #
149 # make TAGS defaults
150 #
151 # The default set of files for the dependency generators to work on
152 # is just their source equivalents.
153
154 TAGS_HS_SRCS=$(HS_SRCS)
155 TAGS_C_SRCS=$(C_SRCS)
156
157 #------------------------------------------------------------------
158 # Clean file make-variables.
159 #
160 # The following three variables are used to control
161 # what gets removed when doing `make clean' 
162 #
163 # MOSTLYCLEAN_FILES   object code etc., but not stuff
164 #                     that is slow to recompile and/or stable
165 #
166 # CLEAN_FILES  all files that are created by running make.
167 #
168 # MAINTAINER_CLEAN_FILES also clean out machine-generated files
169 #                        that may require extra tools to create.
170 #
171 #
172 MOSTLY_CLEAN_FILES += $(HS_OBJS) $(C_OBJS)
173 CLEAN_FILES        += $(HS_PROG) $(C_PROG) $(SCRIPT_PROG) $(SCRIPT_LINK) \
174                       $(PROG) $(LIBRARY) $(HS_IFACES) $(HS_SS) a.out \
175                       $(patsubst %.hsc,%.hs,$(HSC_SRCS)) \
176                       $(patsubst %.hsc,%_hsc.c,$(HSC_SRCS)) \
177                       $(patsubst %.hsc,%_hsc.h,$(HSC_SRCS))
178
179 # Don't clean the .hc files if we're bootstrapping
180 ifneq "$(BootingFromHc)" "YES"
181 CLEAN_FILES += $(HS_HCS)
182 endif
183
184 DIST_CLEAN_FILES += .depend
185 MAINTAINER_CLEAN_FILES += $(BOOT_SRCS)
186
187 #
188 # `Standard' set of files to clean out.
189 #
190 MOSTLY_CLEAN_FILES += \
191  *.CKP *.ln *.BAK *.bak .*.bak *.o *core a.out errs ,* *.a .emacs_*  \
192  tags TAGS *.ind *.ilg *.idx *.idx-prev *.aux *.aux-prev *.dvi *.log \
193  *.toc *.lot *.lof *.blg *.cb *_stub.c *_stub.h *.raw_s
194
195 #------------------------------------------------------------------
196 #
197 # Distribution setup
198
199 # Following variables are used for creating source and binary distributions:
200 #
201 #  SRC_DIST_NAME && BIN_DIST_NAME  -- the package names
202 #
203 #  SRC_DIST_FILES = list of extra files to include from a build tree into a source
204 #                   distribution
205 #  
206 #  SRC_DIST_DIR  = what the current directory in the source/build tree
207 #                  maps to in the source distrib. tree being created.
208 #
209 SRC_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
210
211 #
212 # Binary distributions proceeds as follows:
213 #
214 # Fromthe top of a build tree, you do `make binary-dist'. The
215 # canned rule for this  (in target.mk) will then do a binary
216 # install to a temporary directory before packaging it all up.
217 # The following variables guide the binary-dist:
218 #
219 #  BIN_DIST_TMPDIR= the absolute path to where the temporary directory
220 #                   structure of a binary distribution should be created.
221 #                   [Default: toplevel from which you issue `make binary-dist']
222 #  BIN_DIST_NAME=   what to call the thing.
223 #
224 #  BIN_DIST_DIRS=   at the toplevel, list of directories to descend into when
225 #                   building the distribution tree.
226 #  
227 #  An extra directory variable that is set during bin-dists is $(bindist_top), giving
228 #  the abs. path to the root of the binary installation tree. (useful when punting
229 #  stuff like README and ANNOUNCE into a distrib, for instance)
230 #
231 #  The layout of a binary distribution is described in the
232 #  installation documentation.
233 #
234
235
236 # Directory in which DLLs are dumped so as not to get picked up by running
237 # programs (e.g. ghc or hsc) that run in the build tree
238
239 DLL_PEN = $(FPTOOLS_TOP)/dll
240