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