[project @ 1997-06-06 22:11:51 by sof]
[ghc-hetmet.git] / mk / target.mk
1 #################################################################################
2 #
3 #                       target.mk
4 #
5 #               Standard targets for fptools
6 #
7 #################################################################################
8
9 #
10 # This file contain three groups of target rules:
11 #
12 # 1.  FPtools targets
13 #       depend*
14 #       runtests*
15 #
16 # 2.  GNU standard targets
17 #       all*
18 #       install* uninstall installcheck installdirs
19 #       clean* distclean* mostlyclean* maintainer-clean*
20 #       tags*
21 #       info dvi ps
22 #       dist binary-dist
23 #       check
24 #
25 # 3. Some of the above targets have a version that
26 #    recursively invokes that target in sub-directories.
27 #    This relies on the importing Makefile setting SUBDIRS
28 #
29 #    The recursive targets are marked with a * above
30 #
31
32
33
34 #
35
36
37 ##################################################################
38 #               FPtools standard targets
39 #
40 # depend:
41 #
42 #  The depend target has to cope with a set of files that may have
43 #  different ways of computing their dependencies, i.e., a Haskell
44 #  module's dependencies are computed differently from C files.
45 #
46 # Note that we don't compute dependencies automatically, i.e., have the
47 # .depend file be a target that is dependent on the Haskell+C sources,
48 # and then have the `depend' target depend on `.depend'. The reason for
49 # this is that when GNU make is processing the `include .depend' statement
50 # it records .depend as being a Makefile. Before doing any other processing,
51 # `make' will try to check to see if the Makefiles are up-to-date. And,
52 # surprisingly enough, .depend has a rule for it, so if any of the source
53 # files change, it will be invoked, *regardless* of what target you're making.
54 #
55 # So, for now, the dependencies has to be re-computed manually via `make depend'
56 # whenever a module changes its set of imports. Doing what was outlined above
57 # is only a small optimisation anyway, it would avoid the recomputation of
58 # dependencies if the .depend file was newer than any of the source modules.
59 #
60 .PHONY: depend
61
62 depend :: $(MKDEPENDHS_SRCS) $(MKDEPENDC_SRCS)
63         @$(RM) .depend
64         @touch .depend
65 ifneq "$(DOC_SRCS)" ""
66         $(MKDEPENDLIT) -o .depend $(MKDEPENDLIT_OPTS) $(filter %.lit,$(DOC_SRCS))
67 endif
68 ifneq "$(MKDEPENDC_SRCS)" ""
69         $(MKDEPENDC) -f .depend $(MKDEPENDC_OPTS) -- $(CC_OPTS) -- $(MKDEPENDC_SRCS)
70 endif
71 ifneq "$(MKDEPENDHS_SRCS)" ""
72         @if echo $(notdir $(MKDEPENDHS)) | grep -s ghc ; then \
73            echo $(MKDEPENDHS) -M -optdep-f -optdep.depend $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(MKDEPENDHS_OPTS) $(HC_OPTS) $(MKDEPENDHS_SRCS) ; \
74            $(MKDEPENDHS) -M -optdep-f -optdep.depend $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(MKDEPENDHS_OPTS) $(HC_OPTS) $(MKDEPENDHS_SRCS) ; \
75         else \
76            echo $(MKDEPENDHS) -f .depend $(MKDEPENDHS_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(HC_OPTS) -- $(MKDEPENDHS_SRCS) ; \
77            $(MKDEPENDHS) -f .depend $(MKDEPENDHS_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(HC_OPTS) -- $(MKDEPENDHS_SRCS) ; \
78         fi
79 endif
80 #
81 # The above decides whether to invoke the computation of dependencies
82 # the ghc-0.xx or the ghc-2.x way by looking for "ghc" in the name of
83 # of the `make depend' script. Not bulletproof this.
84 #
85
86 ##################################################################
87 #                       boot
88 #
89 #  The boot target, at a minimum generates dependency information
90
91 .PHONY: boot
92 boot :: depend
93
94
95 ##################################################################
96 #               GNU Standard targets
97 #
98 #       Every Makefile should define the following targets
99
100 # `all'
101 #      Compile the entire program. This should be the default target.
102 #      This target need not rebuild any documentation files; Info files
103 #      should normally be included in the distribution, and DVI files
104 #      should be made only when explicitly asked for.
105
106 # `install'
107 #      Compile the program and copy the executables, libraries, and so on
108 #      to the file names where they should reside for actual use. If
109 #      there is a simple test to verify that a program is properly
110 #      installed, this target should run that test.
111
112 #      The commands should create all the directories in which files are
113 #      to be installed, if they don't already exist. This includes the
114 #      directories specified as the values of the variables prefix and
115 #      exec_prefix , as well as all subdirectories that are needed. One
116 #      way to do this is by means of an installdirs target as described
117 #      below.
118
119 #      Use `-' before any command for installing a man page, so that make
120 #      will ignore any errors.  This is in case there are systems that
121 #      don't have the Unix man page documentation system installed.
122
123 #      The way to install Info files is to copy them into `$(infodir)'
124 #      with $(INSTALL_DATA) (see Command Variables), and then run the
125 #      install-info program if it is present.  install-info is a script
126 #      that edits the Info `dir' file to add or update the menu entry for
127 #      the given Info file; it will be part of the Texinfo package. Here
128 #      is a sample rule to install an Info file:
129
130 #            $(infodir)/foo.info: foo.info # There may be a newer info
131 #            file in . than in srcdir.
132 #                    -if test -f foo.info; then d=.; \
133 #                     else d=$(srcdir); fi; \ $(INSTALL_DATA)
134 #                    $$d/foo.info $@; \ # Run install-info only if it
135 #            exists.  # Use `if' instead of just prepending `-' to the
136 #            # line so we notice real errors from install-info.  # We
137 #            use `$(SHELL) -c' because some shells do not # fail
138 #            gracefully when there is an unknown command.
139 #                    if $(SHELL) -c 'install-info --version' \
140 #                       >/dev/null 2>&1; then \ install-info
141 #                      --infodir=$(infodir) $$d/foo.info; \ else true;
142 #                    fi
143
144 # `uninstall'
145 #      Delete all the installed files that the `install' target would
146 #      create (but not the noninstalled files such as `make all' would
147 #      create).
148
149 # `clean'
150
151 #      Delete all files from the current directory that are normally
152 #      created by building the program.  Don't delete the files that
153 #      record the configuration. Also preserve files that could be made
154 #      by building, but normally aren't because the distribution comes
155 #      with them.
156
157 #      Delete `.dvi' files here if they are not part of the
158 #      distribution.
159
160 # `distclean'
161 #      Delete all files from the current directory that are created by
162 #      configuring or building the program. If you have unpacked the
163 #      source and built the program without creating any other files,
164 #      `make distclean' should leave only the files that were in the
165 #      distribution.
166
167 # `mostlyclean'
168 #      Like `clean', but may refrain from deleting a few files that
169 #      people normally don't want to recompile. For example, the
170 #      `mostlyclean' target for GCC does not delete `libgcc.a', because
171 #      recompiling it is rarely necessary and takes a lot of time.
172
173 # `maintainer-clean'
174 #      Delete everything from the current directory that can be
175 #      reconstructed with this Makefile.  This typically includes
176 #      everything deleted by distclean , plus more: C source files
177 #      produced by Bison, tags tables, Info files, and so on.
178
179 #      One exception, however: `make maintainer-clean' should not delete
180 #      `configure' even if `configure' can be remade using a rule in the
181 #      Makefile. More generally, `make maintainer-clean' should not delete
182 #      anything that needs to exist in order to run `configure' and then
183 #      begin to build the program.
184
185 # `TAGS'
186 #      Update a tags table for this program.
187
188 # `info'
189 #      Generate any Info files needed. The best way to write the rules is
190 #      as follows:
191
192 #            info: foo.info
193
194 #            foo.info: foo.texi chap1.texi chap2.texi
195 #                    $(MAKEINFO) $(srcdir)/foo.texi
196
197 #      You must define the variable MAKEINFO in the Makefile. It should
198 #      run the makeinfo program, which is part of the Texinfo
199 #      distribution.
200
201 # `dvi' `ps'
202 #      Generate DVI files for all TeXinfo documentation. For example:
203
204 #            dvi: foo.dvi
205
206 #            foo.dvi: foo.texi chap1.texi chap2.texi
207 #                    $(TEXI2DVI) $(srcdir)/foo.texi
208
209 #      You must define the variable TEXI2DVI in the Makefile. It should
210 #      run the program texi2dvi , which is part of the Texinfo
211 #      distribution. Alternatively, write just the dependencies, and
212 #      allow GNU Make to provide the command.
213 #
214 #      ps is a FPtools addition for Postscript files
215
216 # `dist' `binary-dist'
217 #      Create a distribution tar file for this program. The tar file
218 #      should be set up so that the file names in the tar file start with
219 #      a subdirectory name which is the name of the package it is a
220 #      distribution for. This name can include the version number.
221
222 #      For example, the distribution tar file of GCC version 1.40 unpacks
223 #      into a subdirectory named `gcc-1.40'.
224
225 #      The easiest way to do this is to create a subdirectory
226 #      appropriately named, use ln or cp to install the proper files in
227 #      it, and then tar that subdirectory.
228
229 #      The dist target should explicitly depend on all non-source files
230 #      that are in the distribution, to make sure they are up to date in
231 #      the distribution. See Making Releases.
232 #
233 #       binary-dist is an FPtools addition for binary distributions
234
235 # `check'
236 #      Perform self-tests (if any). The user must build the program
237 #      before running the tests, but need not install the program; you
238 #      should write the self-tests so that they work when the program is
239 #      built but not installed.
240
241 # The following targets are suggested as conventional names, for programs
242 # in which they are useful.
243
244 # installcheck
245 #      Perform installation tests (if any). The user must build and
246 #      install the program before running the tests. You should not
247 #      assume that `$(bindir)' is in the search path.
248
249 # installdirs
250 #      It's useful to add a target named `installdirs' to create the
251 #      directories where files are installed, and their parent
252 #      directories. There is a script called `mkinstalldirs' which is
253 #      convenient for this; find it in the Texinfo package.
254 #      (FPTOOLS: we use a close relative of the suggested script, situated
255 #       in glafp-utils/mkdirhier -- SOF)
256
257
258
259
260 ###########################################
261 #
262 #       Targets: "all"
263 #
264 ###########################################
265
266 # For each of these variables that is defined
267 # we generate one "all" rule and one rule for the variable itself:
268 #
269 #       HS_PROG         Haskell program
270 #       C_PROG          C program
271 #       LIBRARY         Library
272 #       SCRIPT_PROG     Script (e.g. Perl script)
273 #
274 # For details of exactly what rule is generated, see the
275 # relevant section below
276
277 .PHONY: all
278
279 #----------------------------------------
280 #       Haskell programs
281
282 ifneq "$(HS_PROG)" ""
283 all :: $(HS_PROG)
284
285 $(HS_PROG) :: $(HS_OBJS)
286         $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(HS_OBJS) $(LIBS)
287 endif
288
289 #----------------------------------------
290 #       C programs
291
292 ifneq "$(C_PROG)" ""
293 all :: $(C_PROG)
294
295 $(C_PROG) :: $(C_OBJS)
296         $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) $(C_OBJS) $(LIBS)
297 endif
298
299
300 #----------------------------------------
301 #       Libraries/archives
302
303 ifneq "$(LIBRARY)" ""
304 all :: $(LIBRARY)
305
306
307 define BUILD_LIB
308 $(RM) $@
309 $(AR) $(AR_OPTS) $@ $(LIBOBJS)
310 $(RANLIB) $@
311 endef
312
313 #
314 # For Haskell object files, we might have chosen to split
315 # up the object files. Test for whether the library being
316 # built is consisting of Haskell files by (hackily) checking
317 # whether HS_SRCS is empty or not.
318 #
319
320 ifneq "$(HS_SRCS)" ""
321 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
322 define BUILD_LIB
323 $(RM) $@
324 TMPDIR=$(TMPDIR); export TMPDIR; find $(patsubst %.$(way_)o,%,$(LIBOBJS)) -name '*.$(way_)o' -print | xargs ar q $@
325 $(RANLIB) $@
326 endef
327 endif # $(filter...
328 endif
329
330 $(LIBRARY) :: $(LIBOBJS)
331         $(BUILD_LIB)
332 endif
333
334 #----------------------------------------
335 #       Script programs
336
337 ifneq "$(SCRIPT_PROG)" ""
338
339 # To produce a fully functional script, you may
340 # have to add some configuration variables at the top of 
341 # the script, i.e., the compiler driver needs to know
342 # the path to various utils in the build tree for instance.
343 #
344 # To have the build rule for the script automatically do this
345 # for you, set the variable SCRIPT_SUBST_VARS to the list of
346 # variables you need to put in.
347
348 #
349 # SCRIPT_SUBST creates a string of echo commands that
350 # will when evaluated append the (perl)variable name and its value 
351 # to the target it is used for, i.e.,
352 #
353 #    A=foo
354 #    B=bar
355 #    SCRIPT_SUBST_VARS = A B
356 #    SCRIPT_SUBST=echo "$""A=\"foo\";" >> $@; echo "$""B=\"bar\";" >> $@
357 #
358 #    so if you have a rule like the following
359 #    
360 #     foo:
361 #         @(RM) $@
362 #         @(TOUCH) $@
363 #         @eval $(SCRIPT_SUBST)
364 #
365 #    `make foo' would create a file `foo' containing the following
366 #
367 #    % cat foo
368 #    $A=foo;
369 #    $B=bar;
370 #    %
371 #
372 # ToDo: make this work for shell scripts (drop the initial $).
373 #
374 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$$\"\"$(val)=\\\"$($(val))\\\";\" >> $@;")
375
376 all :: $(SCRIPT_PROG)
377
378 $(SCRIPT_PROG) :: $(SCRIPT_OBJS)
379         $(RM) $@
380         @echo Creating $@...
381 ifeq "$(INTERP)" "perl"
382 ifneq "$(BIN_DIST)" "1"
383         @echo "#!/bin/sh -- # to stop perl from looping " > $@
384         @echo "eval 'exec perl -S $$$""0 $$""{1+\"$$$""@\"}'"  >> $@
385         @echo "      if $$""running_under_some_shell;"         >> $@
386 else
387         @touch $@
388 endif
389 else
390 ifneq "$(INTERP)" ""
391         @echo "#!"$(INTERP) > $@
392 else
393         @touch $@
394 endif
395 endif
396 ifneq "$(SCRIPT_PREFIX_FILES)" ""
397         @cat $(SCRIPT_PREFIX_FILES) >> $@
398 endif
399         @eval $(SCRIPT_SUBST) 
400         @cat $(SCRIPT_OBJS) >> $@
401         @chmod a+x $@
402         @echo Done.
403 endif
404
405
406 ###########################################
407 #
408 #       Targets: install install-strip uninstall
409 #
410 ###########################################
411
412 # For each of these variables that is defined, you
413 # get one install rule
414 #
415 #       INSTALL_PROGS    install these executable programs in $(bindir)
416 #       INSTALL_SCRIPTS  install these executable scripts in $(bindir)
417 #       INSTALL_LIBS     install these platform-dependent libraries in $(libdir)
418 #       INSTALL_LIBEXECS install these platform-dependent execs in $(libdir)
419 #       INSTALL_DATAS    install these platform-independent files in $(datadir)
420 #
421 # If the installation directory variable is undefined, the install rule simply
422 # emits a suitable error message.
423 #
424 # Remember, too, that the installation directory variables ($(bindir) and
425 # friends can be overridden from their original settings in mk/config.mk.in
426 # || mk/build.mk
427 #
428 .PHONY: install installdirs install-strip install-dirs uninstall install-docs show-install
429
430 show-install :
431         @echo "bindir = $(bindir)"
432         @echo "libdir = $(libdir)"
433         @echo "libexecdir = $(libexecdir)  # by default, same as libdir"
434         @echo "datadir = $(datadir)  # unused for ghc project"
435
436 #
437 # Sometimes useful to separate out the creation of install directories 
438 # from the installation itself.
439 #
440 install-dirs ::
441         @$(INSTALL_DIR) $(bindir)
442         @$(INSTALL_DIR) $(libdir)
443         @$(INSTALL_DIR) $(libexecdir)
444         @$(INSTALL_DIR) $(datadir)
445
446 # Better do this first...
447 # but we won't for the moment, do it on-demand from
448 # within the various install targets instead.
449 #install:: install-dirs
450
451 ifneq "$(INSTALL_PROGS)" ""
452 install:: $(INSTALL_PROGS)
453         @$(INSTALL_DIR) $(bindir)
454         for i in $(INSTALL_PROGS); do \
455                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir); \
456         done
457 endif
458
459 #
460 # Just like INSTALL_PROGS, but prefix with install sites bin/lib/data and
461 # install without stripping.
462 #
463 ifneq "$(INSTALL_SCRIPTS)" ""
464 install:: $(INSTALL_SCRIPTS)
465         @$(INSTALL_DIR) $(bindir)
466 ifeq "$(INTERP)" "perl"
467 ifneq "$(BIN_DIST)" "1"
468         @for i in $(INSTALL_SCRIPTS); do \
469            $(RM) $$i.tmp; \
470            @echo "#!/bin/sh -- # to stop perl from looping "        > $$i.tmp ; \
471            echo "eval 'exec $(PERL) -S $$$""0 $$""{1+\"$$$""@\"}'" >> $$i.tmp ; \
472            echo "      if $$""running_under_some_shell;"           >> $$i.tmp ; \
473            echo $$"bindir='$(bindir)';"                            >> $$i.tmp ; \
474            echo $$"libdir='$(libdir)';"                            >> $$i.tmp ; \
475            echo $$"libexecdir='$(libexecdir)';"                    >> $$i.tmp ; \
476            echo $$"datadir='$(datadir)';"                          >> $$i.tmp ; \
477            cat  $$i                                                >> $$i.tmp ; \
478            echo $(INSTALL_PROGRAM) $(filter-out -s,$(INSTALL_OPTS)) $$i.tmp $(bindir)/$$i ;    \
479            $(INSTALL_PROGRAM) $(filter-out -s,$(INSTALL_BIN_OPTS)) $$i.tmp $(bindir)/$$i ; \
480            $(RM) $$i.tmp; \
481         done
482 else
483         for i in $(INSTALL_SCRIPTS); do \
484                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(bindir); \
485         done
486 endif
487 else
488         for i in $(INSTALL_SCRIPTS); do \
489                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(bindir); \
490         done
491 endif
492 endif
493
494 ifneq "$(INSTALL_LIB_SCRIPTS)" ""
495 install:: $(INSTALL_LIB_SCRIPTS)
496         @$(INSTALL_DIR) $(libdir)
497 ifeq "$(INTERP)" "perl"
498 ifneq "$(BIN_DIST)" "1"
499         @for i in $(INSTALL_LIB_SCRIPTS); do \
500            $(RM) $$i.tmp; \
501            @echo "#!/bin/sh -- # to stop perl from looping "        > $$i.tmp ; \
502            echo "eval 'exec $(PERL) -S $$$""0 $$""{1+\"$$$""@\"}'" >> $$i.tmp ; \
503            echo "      if $$""running_under_some_shell;"           >> $$i.tmp ; \
504            echo $$"bindir='$(bindir)';"                            >> $$i.tmp ; \
505            echo $$"libdir='$(libdir)';"                            >> $$i.tmp ; \
506            echo $$"libexecdir='$(libexecdir)';"                    >> $$i.tmp ; \
507            echo $$"datadir='$(datadir)';"                          >> $$i.tmp ; \
508            cat  $$i                                                >> $$i.tmp ; \
509            echo $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir) ;    \
510            $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i.tmp $(libdir)/$$i ; \
511            $(RM) $$i.tmp; \
512         done
513 else
514         for i in $(INSTALL_LIB_SCRIPTS); do \
515                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir); \
516         done
517 endif
518 else
519         for i in $(INSTALL_LIB_SCRIPTS); do \
520                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir); \
521         done
522 endif
523 endif
524
525 ifneq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
526 install:: $(INSTALL_LIBEXEC_SCRIPTS)
527         @$(INSTALL_DIR) $(libexecdir)
528 ifeq "$(INTERP)" "perl"
529 ifneq "$(BIN_DIST)" "1"
530         @for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
531            $(RM) $$i.tmp; \
532            @echo "#!/bin/sh -- # to stop perl from looping "        > $$i.tmp ; \
533            echo "eval 'exec $(PERL) -S $$$""0 $$""{1+\"$$$""@\"}'" >> $$i.tmp ; \
534            echo "      if $$""running_under_some_shell;"           >> $$i.tmp ; \
535            echo $$"bindir='$(bindir)';"                            >> $$i.tmp ; \
536            echo $$"libdir='$(libdir)';"                            >> $$i.tmp ; \
537            echo $$"libexecdir='$(libexecdir)';"                    >> $$i.tmp ; \
538            echo $$"datadir='$(datadir)';"                          >> $$i.tmp ; \
539            cat  $$i                                                >> $$i.tmp ; \
540            echo $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir) ;    \
541            $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i.tmp $(libexecdir)/$$i ; \
542            $(RM) $$i.tmp; \
543         done
544 else
545         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
546                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir); \
547         done
548 endif
549 else
550         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
551                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir); \
552         done
553 endif
554 endif
555
556 ifneq "$(INSTALL_LIBS)" ""
557 install:: $(INSTALL_LIBS)
558         @$(INSTALL_DIR) $(libdir)
559         for i in $(INSTALL_LIBS); do \
560                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
561         done
562 endif
563
564 ifneq "$(INSTALL_LIBEXECS)" ""
565 install:: $(INSTALL_LIBEXECS)
566         @$(INSTALL_DIR) $(libexecdir)
567         -for i in $(INSTALL_LIBEXECS); do \
568                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(libexecdir); \
569         done
570 endif
571
572 ifneq "$(INSTALL_DATAS)" ""
573 install:: $(INSTALL_DATAS)
574         @$(INSTALL_DIR) $(datadir)
575         for i in $(INSTALL_DATAS); do \
576                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
577         done
578 endif
579
580 #
581 # Use with care..
582 #
583 uninstall:: 
584 ifeq ($(INSTALL_PROGS),)
585         @for i in $(INSTALL_PROGS) ; do                         \
586                 echo rm -f $(bindir)/`basename $$i`;            \
587                 rm -f $(bindir)/`basename $$i`;                 \
588         done
589 endif
590 ifeq ($(INSTALL_LIBS),)
591         @for i in $(INSTALL_LIBS); do                           \
592                 echo rm -f $(libdir)/`basename $$i`;            \
593                 rm -f $(libdir)/`basename $$i`;                 \
594         done
595 endif
596 ifeq ($(INSTALL_LIBEXECS),)
597         @for i in $(INSTALL_LIBEXECS); do                       \
598                 echo rm -f $(libexecdir)/`basename $$i`;        \
599                 rm -f $(libexecdir)/`basename $$i`;             \
600         done
601 endif
602 ifeq ($(INSTALL_DATAS),)
603         @for i in $(INSTALL_DATAS); do                          \
604                 echo rm -f $(datadir)/`basename $$i`;           \
605                 rm -f $(datadir)/`basename $$i`;                \
606         done
607 endif
608
609 #
610 # install-strip is from the GNU Makefile standard.
611 #
612 ifneq "$(way)" ""
613 install-strip::
614         @$(MAKE) EXTRA_INSTALL_OPTS='-s' install                                        
615 endif
616
617 ###########################################
618 #
619 #       Targets: dist binary-dist
620 #
621 ###########################################
622
623
624 #
625 # dist-pre is a canned rule the toplevel of your source tree
626 # would use as follows, 
627 #
628 #  dist :: dist-pre
629 #
630 # it performs two tasks, first creating the distribution directory
631 # tree and it then decorates the new tree with symbolic links pointing
632 # to the symbolic links in the build tree.
633 #
634 # The dist-pre relies on (at least) the `find' in GNU findutils
635 # (only tested with version 4.1). All non-GNU `find's I have
636 # laid on my hands locally, has a restrictive treatment of {} in
637 # -exec commands, i.e.,
638 #
639 #   find . -print echo a{} \;
640 #   
641 # does not expand the {}, it has to be a separate argument (i.e. `a {}').
642 # GNU find is (IMHO) more sensible here, expanding any {} it comes across
643 # inside an -exec, whether it is a separate arg or part of a word:
644 #
645 #  $ touch yes
646 #  $ find --version
647 #    GNU find version 4.1
648 #  $ find yes -exec echo oh,{}! \;
649 #    oh,yes!
650 #
651 # Of course, the above is not impossible to achieve with other finds,
652 # just that GNU find does the Patently Right Thing here :)
653 #
654 # ====> if you're using these dist rules, get hold of GNU findutils.
655 #
656 #  --SOF 2/97
657 #
658 .PHONY: dist dist-pre dist-post
659
660 #
661 # The dist rules leaves out CVS, SRC (from mkshadowdir) and tests
662 # directories when creating shadow source distrib tree
663 #
664 dist-pre::
665         -rm -rf $(SRC_DIST_DIR)
666         -rm -f $(SRC_DIST_NAME).tar.gz
667         (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -exec $(MKDIRHIER) $(SRC_DIST_DIR)/{} \; \) ; )
668         (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -name "*~" -prune -o -name ".cvsignore" -prune -o -type l -exec $(LN_S) $(FPTOOLS_TOP_ABS)/{} $(SRC_DIST_DIR)/{} \; )
669
670 #
671 # After having created a shadow distribution tree and copied/linked
672 # all the necessary files to it, `dist-post' makes sure the permissions
673 # are set right and then package up the tree. Empty directories are also removed.
674 #
675 # For now, we make the packaging a separate rule, so as to allow
676 # the inspection of the dist tree before eventually packaging it up.
677 #
678 dist-post::
679         @echo Deleting the following empty directories..
680         ( cd $(SRC_DIST_DIR) ; cd .. ; find $(SRC_DIST_NAME) -type d -exec sh -c 'test x`ls $$0 | wc -l | sed -e "s/ //g"` = x0' {} \; -print -exec rm -rf {} \; -prune )
681         ( cd $(SRC_DIST_DIR) ; cd .. ; chmod -R a+rw $(SRC_DIST_NAME) ) 
682
683 dist-package::
684         cd $(SRC_DIST_DIR); cd ..; $(TAR) chzf $(SRC_DIST_NAME).tar.gz $(SRC_DIST_NAME)
685
686 #
687
688
689 # The default dist rule:
690 #
691 # copy/link the contents of $(SRC_DIST_FILES) into the
692 # shadow distribution tree. SRC_DIST_FILES contain the
693 # build-generated files that you want to include in
694 # a source distribution.
695 #
696 #
697 ifneq "$(SRC_DIST_FILES)" ""
698 dist::
699         @for i in $(SRC_DIST_FILES); do                  \
700           if (test -f "$$i"); then                       \
701             echo $(LN_S) `pwd`/$$i $(SRC_DIST_DIR)/$$i ; \
702             $(LN_S) `pwd`/$$i $(SRC_DIST_DIR)/$$i ;      \
703           fi;                                            \
704         done;
705 endif
706
707 #
708 # binary-dist creates a binary bundle, set BIN_DIST_NAME
709 # to package name and do `make binary-dist' (normally this
710 # just a thing you would do from the toplevel of fptools or)
711 # from the top of a project.
712 #
713 .PHONY: binary-dist-pre binary-dist binary-pack
714
715 binary-dist-pre::
716         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
717         -rm -f $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
718         @for i in $(BIN_DIST_DIRS); do                   \
719           if (test -d "$$i"); then                       \
720            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i-$(ProjectVersion); \
721            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i-$(ProjectVersion); \
722            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion); \
723            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion); \
724            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$$i-$(ProjectVersion); \
725            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$$i-$(ProjectVersion); \
726            echo $(MAKE) -C $$i $(MFLAGS) install BIN_DIST=1 BIN_DIST_NAME=$(BIN_DIST_NAME) \
727                         prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
728                         exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
729                         bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
730                         libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
731                         libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
732                         datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$$i-$(ProjectVersion) ; \
733            $(MAKE) -C $$i $(MFLAGS) install BIN_DIST=1 BIN_DIST_NAME=$(BIN_DIST_NAME) \
734                         prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
735                         exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
736                         bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
737                         libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
738                         libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
739                         datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$$i-$(ProjectVersion) ; \
740           fi; \
741         done
742
743 #
744 # Do this separately for now
745
746 binary-pack::
747         ( cd $(BIN_DIST_TMPDIR); $(TAR) chzf $(BIN_DIST_NAME).tar.gz $(BIN_DIST_NAME); rm -rf $(BIN_DIST_NAME) )
748
749 ifneq "$(way)" ""
750 package-way-dist::
751         ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print | xargs tar cvf $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar )
752         gzip $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar
753 endif
754
755 ifneq "$(way)" ""
756 remove-way-dist::
757         ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print -exec rm -f {} \; )
758 endif
759
760 ###########################################
761 #
762 #       Targets: check tags show info
763 #
764 ###########################################
765
766 #------------------------------------------------------------
767 #                       Check
768
769 .PHONY: check
770
771 check:: $(TESTS)
772         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
773           if (test -f "$$i"); then              \
774             echo Running: `basename $$i` ;      \
775             cd test; `basename $$i` ;           \
776           fi;                                   \
777         done;
778
779 #------------------------------------------------------------
780 #                       Tags
781
782 .PHONY: TAGS
783
784 TAGS:: $(SOURCES)
785         @$(RM) TAGS
786         @touch TAGS
787 ifneq "$(HS_SRCS)" ""
788         $(HSTAGS) $(HSTAGS_OPTS) -- $(HS_SRCS)
789 endif
790 ifneq "$(C_SRCS)" ""
791         etags -a $(C_SRCS)
792 endif
793
794 #------------------------------------------------------------
795 #                       Makefile debugging
796 # to see the effective value used for a Makefile variable, do
797 #  make show VALUE=MY_VALUE
798 #
799
800 show:
801         @echo '$(VALUE)=$($(VALUE))'
802
803 #------------------------------------------------------------
804 #                       Documentation
805
806 .PHONY: dvi ps html info txt
807
808 info:: $(DOC_INFO)
809 dvi:: $(DOC_DVI)
810 ps::  $(DOC_PS)
811 html:: $(DOC_HTML)
812 texi:: $(DOC_TEXI)
813 txt:: $(DOC_TEXT)
814
815 #
816 # Building literate root documents requires extra treatment,
817 # as the root files need to be processed different from other
818 # literate files (`compile' them into .itex with the -S (standalone)
819 # option) and then link together a master TeX document with
820 # a -S option.
821 #
822 $(filter %.tex,$(patsubst %.lit,%.tex,$(DOC_SRCS))) :
823         @$(RM) $@
824         $(LIT2LATEX) -S -c $(LIT2LATEX_OPTS) -o $(patsubst %.tex,%.itex,$@) $(addsuffix .lit,$(basename $@))
825         $(LIT2LATEX) -S $(LIT2LATEX_OPTS) -o $@ $(addsuffix .itex,$(basename $@))
826         @chmod 444 $@
827 #
828 # Ditto for texi and html
829 #
830 $(filter %.texi,$(patsubst %.lit,%.texi,$(DOC_SRCS))) :
831         @$(RM) $@
832         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.texi,%.itxi,$@) $(addsuffix .lit,$(basename $@))
833         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o $@ $(addsuffix .itxi,$(basename $@))
834         @chmod 444 $@
835 #
836 # Rather than using lit2html, we opt for the lit-texi-html route,
837 # and use texi2html as our HTML backend.
838 # (Note: we need to change mkdependlit to get this really off the ground)
839 #
840 # If the generated html representation is split up into a myriad of files,
841 # put the files in a subdirectory html/, if a monolith is created, park
842 # the generated file in the same dir as the .lit file.
843 #
844 $(filter %.html,$(patsubst %.lit,%.html,$(DOC_SRCS))) : $(filter %.lit,$(DOC_SRCS))
845         $(RM) $@ $(patsubst %.html,%.texi,$@) $(patsubst %.html,%.itxi,$@)
846 ifneq "$(filter -monolithic,$(TEXI2HTML_OPTS))" ""
847         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.itxi,$@) $(addsuffix .lit,$(basename $@))
848         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.texi,$@) $(addsuffix .itxi,$(basename $@))
849         $(TEXI2HTML) $(TEXI2HTML_OPTS) $(patsubst %.html,%.texi,$@)
850         cp $(TEXI2HTML_PREFIX)invisible.xbm .
851 else
852         $(RM) html/$(basename $@)*
853         $(MKDIRHIER) html
854         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.itxi,$@) $(addsuffix .lit,$(basename $@))
855         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o html/$(patsubst %.html,%.texi,$@) $(addsuffix .itxi,$(basename $@))
856         (cd html; ../$(TEXI2HTML) $(TEXI2HTML_OPTS) $(patsubst %.html,%.texi,$@); cd ..)
857         cp $(TEXI2HTML_PREFIX)invisible.xbm html/
858         @touch $@
859 endif
860 ###########################################
861 #
862 #       Targets: clean
863 #
864 ###########################################
865
866 .PHONY: realclean mostlyclean clean distclean maintainer-clean
867
868 # realclean is just a synonym for maintainer-clean
869 realclean: maintainer-clean
870
871
872 ifneq "$(MOSTLY_CLEAN_FILES)" ""
873 mostlyclean::
874         rm -f $(MOSTLY_CLEAN_FILES)
875 endif
876
877 ifneq "$(CLEAN_FILES)" ""
878 clean:: mostlyclean
879         rm -f $(CLEAN_FILES)
880 endif
881
882
883 ifneq "$(DIST_CLEAN_FILES)" ""
884 distclean:: mostlyclean clean
885         rm -f $(DIST_CLEAN_FILES)
886 endif
887
888
889 ifneq "$(MAINTAINER_CLEAN_FILES)" ""
890 maintainer-clean:: mostlyclean clean distclean
891         @echo 'This command is intended for maintainers to use; it'
892         @echo 'deletes files that may need special tools to rebuild.'
893         rm -f $(MAINTAINER_CLEAN_FILES)
894 endif
895
896 #
897 # If (Haskell) object files are split, cleaning up 
898 # consist of descending into the directories where
899 # the myriads of object files have been put.
900 #
901
902 ifneq "$(HS_OBJS)" ""
903 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
904 clean ::
905         find $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food;
906 endif
907 endif
908
909
910 #################################################################################
911 #
912 #                       Way management
913 #
914 #################################################################################
915
916 # Here is the ingenious jiggery pokery that allows you to build multiple versions
917 # of a program in a single build tree.
918 #
919 # The ways setup requires the following variables to be set:
920 #
921 # Expects:      $(WAYS)                 the possible "way" strings to one of 
922 #                                       which $(way) will be set
923
924
925 # So how does $(way) ever get set to anything?  Answer, we recursively
926 # invoke make, setting $(way) on the command line.
927 # When do we do this recursion?  Answer: whenever the programmer
928 # asks make to make a target that involves a way suffix.
929 # We must remember *not* to recurse again; but that's easy: we
930 # just see if $(way) is set:
931
932 ifeq "$(way)" ""
933
934 # If $(WAYS) = p mc, then WAY_TARGETS expands to
935 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
936 # and OTHER_WAY_TARGETS to
937 #       %_p.a %_p %_mc.a %_mc
938 # where the suffixes are from $(SUFFIXES)
939 #
940 # We have to treat libraries and "other" targets differently, 
941 # because their names are of the form
942 #       libHS_p.a and Foo_p
943 # whereas everything else has names of the form
944 #       Foo.p_o
945
946 FPTOOLS_SUFFIXES := o hi hc
947
948 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
949 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
950
951 # $@ will be something like Foo.p_o
952 # $(suffix $@)     returns .p_o
953 # $(subst .,.p_o)  returns p_o
954 # $(subst _,.,p_o) returns p.o   (clever)
955 # $(basename p.o)  returns p
956
957 $(WAY_TARGETS) :
958         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
959
960 # $(@F) will be something like libHS_p.a, or Foo_p
961 # $(basename $(@F)) will be libHS_p, or Foo_p
962 # The sed script extracts the "p" part.
963
964 $(LIB_WAY_TARGETS) :
965         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
966
967 endif   # if way
968
969
970 ##################################################################
971 #
972 #               Recursive stuff
973 #
974 ##################################################################
975
976 # Here are the diabolically clever rules that
977
978 # (a) for each "recursive target" <t>
979 #     propagates "make <t>" to directories in SUBDIRS
980 #
981 # (b) when SUBDIRS is empty,
982 #     for each "multi-way-target" <t>
983 #     calls "make -way=w <t>" for each w in $(WAYS)
984 #
985 #     This has the effect of making the standard target
986 #     in each of the specified ways (as well as in the normal way
987
988 # Controlling variables
989 #       WAYS    = extra (beyond the normal way) ways to build things in
990 #       SUBDIRS = subdirectories to recurse into
991
992 # No ways, so iterate over the SUBDIRS
993
994 ifeq "$(way)" ""
995 ifneq "$(SUBDIRS)" ""
996
997 all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
998         @case '${MFLAGS}' in *[ik]*) set +e;; esac;
999         @echo "------------------------------------------------------------------------"
1000         @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
1001         @echo "PWD = $(shell pwd)"
1002         @echo "------------------------------------------------------------------------"
1003         @for i in $(SUBDIRS) ; do \
1004           echo "------------------------------------------------------------------------"; \
1005           echo "==fptools== $(MAKE) $@;"; \
1006           echo " in $(shell pwd)/$$i"; \
1007           echo "------------------------------------------------------------------------"; \
1008           $(MAKE) --no-print-directory -C $$i $(MFLAGS) $@; \
1009         done
1010         @echo "------------------------------------------------------------------------"
1011         @echo "===fptools== Finished making \`$@' in $(SUBDIRS) ..."
1012         @echo "PWD = $(shell pwd)"
1013         @echo "------------------------------------------------------------------------"
1014
1015 dist ::
1016         @case '${MFLAGS}' in *[ik]*) set +e;; esac; \
1017         for i in $(SUBDIRS) ; do \
1018           $(MKDIRHIER_PREFIX)mkdirhier $(SRC_DIST_DIR)/$$i; \
1019           $(MAKE) -C $$i $(MFLAGS) $@ SRC_DIST_DIR=$(SRC_DIST_DIR)/$$i; \
1020         done
1021 endif
1022 endif
1023
1024 #
1025 # Selectively building subdirectories.
1026 #
1027 #
1028 ifneq "$(SUBDIRS)" ""
1029 $(SUBDIRS) ::
1030           $(MAKE) -C $@ $(MFLAGS)
1031 endif
1032
1033 ifneq "$(WAYS)" ""
1034 ifeq "$(way)" ""
1035
1036 # NB: the targets exclude 
1037 #       boot info TAGS
1038 # since these are way-independent
1039 all docs runtests TAGS clean veryclean maintainer-clean install ::
1040         @echo "------------------------------------------------------------------------"
1041         @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
1042         @echo "PWD = $(shell pwd)"
1043         @echo "------------------------------------------------------------------------"
1044         @for i in $(WAYS) ; do \
1045           echo "------------------------------------------------------------------------"; \
1046           echo "==fptools== $(MAKE) way=$$i $@;"; \
1047           echo "PWD = $(shell pwd)"; \
1048           echo "------------------------------------------------------------------------"; \
1049           $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
1050         done
1051         @echo "------------------------------------------------------------------------"
1052         @echo "===fptools== Finished recursively making \`$@' for ways: $(WAYS) ..."
1053         @echo "PWD = $(shell pwd)"
1054         @echo "------------------------------------------------------------------------"
1055
1056 endif
1057 endif
1058