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