dd67bf464615d3f7a4f21e37aa7e192b4bacf08c
[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_SCRIPTS); do \
499                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir); \
500         done
501 endif
502 endif
503
504 ifneq "$(INSTALL_LIBS)" ""
505 install:: $(INSTALL_LIBS)
506         for i in $(INSTALL_LIBS); do \
507                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
508         done
509 endif
510
511 ifneq "$(INSTALL_LIBEXECS)" ""
512 install:: $(INSTALL_LIBEXECS)
513         -for i in $(INSTALL_LIBEXECS); do \
514                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(libexecdir); \
515         done
516 endif
517
518 ifneq "$(INSTALL_DATAS)" ""
519 install:: $(INSTALL_DATAS)
520         for i in $(INSTALL_DATAS); do \
521                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
522         done
523 endif
524
525 #
526 # Use with care..
527 #
528 uninstall:: 
529 ifeq ($(INSTALL_PROGS),)
530         @for i in $(INSTALL_PROGS) ; do                         \
531                 echo rm -f $(bindir)/`basename $$i`;            \
532                 rm -f $(bindir)/`basename $$i`;                 \
533         done
534 endif
535 ifeq ($(INSTALL_LIBS),)
536         @for i in $(INSTALL_LIBS); do                           \
537                 echo rm -f $(libdir)/`basename $$i`;            \
538                 rm -f $(libdir)/`basename $$i`;                 \
539         done
540 endif
541 ifeq ($(INSTALL_LIBEXECS),)
542         @for i in $(INSTALL_LIBEXECS); do                       \
543                 echo rm -f $(libexecdir)/`basename $$i`;        \
544                 rm -f $(libexecdir)/`basename $$i`;             \
545         done
546 endif
547 ifeq ($(INSTALL_DATAS),)
548         @for i in $(INSTALL_DATAS); do                          \
549                 echo rm -f $(datadir)/`basename $$i`;           \
550                 rm -f $(datadir)/`basename $$i`;                \
551         done
552 endif
553
554 #
555 # install-strip is from the GNU Makefile standard.
556 #
557 ifneq "$(way)" ""
558 install-strip::
559         @$(MAKE) EXTRA_INSTALL_OPTS='-s' install                                        
560 endif
561
562 ###########################################
563 #
564 #       Targets: dist binary-dist
565 #
566 ###########################################
567
568
569 #
570 # dist-pre is a canned rule the toplevel of your source tree
571 # would use as follows, 
572 #
573 #  dist :: dist-pre
574 #
575 # it performs two tasks, first creating the distribution directory
576 # tree and it then decorates the new tree with symbolic links pointing
577 # to the symbolic links in the build tree.
578 #
579 # The dist-pre relies on (at least) the `find' in GNU findutils
580 # (only tested with version 4.1). All non-GNU `find's I have
581 # laid on my hands locally, has a restrictive treatment of {} in
582 # -exec commands, i.e.,
583 #
584 #   find . -print echo a{} \;
585 #   
586 # does not expand the {}, it has to be a separate argument (i.e. `a {}').
587 # GNU find is (IMHO) more sensible here, expanding any {} it comes across
588 # inside an -exec, whether it is a separate arg or part of a word:
589 #
590 #  $ touch yes
591 #  $ find --version
592 #    GNU find version 4.1
593 #  $ find yes -exec echo oh,{}! \;
594 #    oh,yes!
595 #
596 # Of course, the above is not impossible toi achieve with other finds,
597 # just that GNU find does the Patently Right Thing here :)
598 #
599 # ====> if you're using these dist rules, get hold of GNU findutils.
600 #
601 #  --SOF 2/97
602 #
603 .PHONY: dist dist-pre dist-post
604
605 dist-pre::
606         -rm -rf $(SRC_DIST_DIR)
607         -rm -f $(SRC_DIST_NAME).tar.gz
608         (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -exec $(MKDIRHIER) $(SRC_DIST_DIR)/{} \; \) ; )
609         (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)/{} \; )
610
611 #
612 # After having created a shadow distribution tree and copied/linked
613 # all the necessary files to it, `dist-post' makes sure the permissions
614 # are set right and packages up the tree.
615 #
616 # For now, we make the packaging a separate rule, so as to allow
617 # the inspection of the dist tree before eventually packaging it up.
618 #
619 dist-post::
620         ( cd $(SRC_DIST_DIR) ; cd .. ; chmod -R a+rw $(SRC_DIST_NAME) ) 
621
622 dist-package::
623         cd $(SRC_DIST_DIR); cd ..; $(TAR) chzf $(SRC_DIST_NAME).tar.gz $(SRC_DIST_NAME)
624
625 #
626 # The default dist rule:
627 #
628 # copy/link the contents of $(SRC_DIST_FILES) into the
629 # shadow distribution tree. SRC_DIST_FILES contain the
630 # build-generated files that you want to include in
631 # a source distribution.
632 #
633 #
634 ifneq "$(SRC_DIST_FILES)" ""
635 dist::
636         @for i in $(SRC_DIST_FILES); do                  \
637           if (test -f "$$i"); then                       \
638             echo $(LN_S) `pwd`/$$i $(SRC_DIST_DIR)/$$i ; \
639             $(LN_S) `pwd`/$$i $(SRC_DIST_DIR)/$$i ;      \
640           fi;                                            \
641         done;
642 endif
643
644 #
645 # binary-dist creates a binary bundle, set BIN_DIST_NAME
646 # to package name and do `make binary-dist' (normally this
647 # just a thing you would do from the toplevel of fptools or)
648 # from the top of a project.
649 #
650 .PHONY: binary-dist-pre binary-dist binary-pack
651
652 binary-dist-pre::
653         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
654         -rm -f $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
655         @for i in $(BIN_DIST_DIRS); do                   \
656           if (test -d "$$i"); then                       \
657            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i-$(ProjectVersion); \
658            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i-$(ProjectVersion); \
659            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion); \
660            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion); \
661            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$$i-$(ProjectVersion); \
662            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$$i-$(ProjectVersion); \
663            echo $(MAKE) -C $$i $(MFLAGS) install BIN_DIST=1 BIN_DIST_NAME=$(BIN_DIST_NAME) \
664                         prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
665                         exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
666                         bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
667                         libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
668                         libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
669                         datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$$i-$(ProjectVersion) ; \
670            $(MAKE) -C $$i $(MFLAGS) install BIN_DIST=1 BIN_DIST_NAME=$(BIN_DIST_NAME) \
671                         prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
672                         exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
673                         bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
674                         libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
675                         libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i-$(ProjectVersion) \
676                         datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$$i-$(ProjectVersion) ; \
677           fi; \
678         done
679
680 #
681 # Do this separately for now
682
683 binary-pack::
684         ( cd $(BIN_DIST_TMPDIR); $(TAR) chzf $(BIN_DIST_NAME).tar.gz $(BIN_DIST_NAME); rm -rf $(BIN_DIST_NAME) )
685
686 ifneq "$(way)" ""
687 package-way-dist::
688         ( 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 )
689         gzip $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar
690 endif
691
692 ifneq "$(way)" ""
693 remove-way-dist::
694         ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print -exec rm -f {} \; )
695 endif
696
697 ###########################################
698 #
699 #       Targets: check tags show info
700 #
701 ###########################################
702
703 #------------------------------------------------------------
704 #                       Check
705
706 .PHONY: check
707
708 check:: $(TESTS)
709         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
710           if (test -f "$$i"); then              \
711             echo Running: `basename $$i` ;      \
712             cd test; `basename $$i` ;           \
713           fi;                                   \
714         done;
715
716 #------------------------------------------------------------
717 #                       Tags
718
719 .PHONY: TAGS
720
721 TAGS:: $(SOURCES)
722         @$(RM) TAGS
723         @touch TAGS
724 ifneq "$(HS_SRCS)" ""
725         $(HSTAGS) $(HSTAGS_OPTS) -- $(HS_SRCS)
726 endif
727 ifneq "$(C_SRCS)" ""
728         etags -a $(C_SRCS)
729 endif
730
731 #------------------------------------------------------------
732 #                       Makefile debugging
733 # to see the effective value used for a Makefile variable, do
734 #  make show VALUE=MY_VALUE
735 #
736
737 show:
738         @echo '$(VALUE)=$($(VALUE))'
739
740 #------------------------------------------------------------
741 #                       Documentation
742
743 .PHONY: dvi ps html info txt
744
745 info:: $(DOC_INFO)
746 dvi:: $(DOC_DVI)
747 ps::  $(DOC_PS)
748 html:: $(DOC_HTML)
749 texi:: $(DOC_TEXI)
750 txt:: $(DOC_TEXT)
751
752 #
753 # Building literate root documents requires extra treatment,
754 # as the root files need to be processed different from other
755 # literate files (`compile' them into .itex with the -S (standalone)
756 # option) and then link together a master TeX document with
757 # a -S option.
758 #
759 $(filter %.tex,$(patsubst %.lit,%.tex,$(DOC_SRCS))) :
760         @$(RM) $@
761         $(LIT2LATEX) -S -c $(LIT2LATEX_OPTS) -o $(patsubst %.tex,%.itex,$@) $(addsuffix .lit,$(basename $@))
762         $(LIT2LATEX) -S $(LIT2LATEX_OPTS) -o $@ $(addsuffix .itex,$(basename $@))
763         @chmod 444 $@
764 #
765 # Ditto for texi and html
766 #
767 $(filter %.texi,$(patsubst %.lit,%.texi,$(DOC_SRCS))) :
768         @$(RM) $@
769         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.texi,%.itxi,$@) $(addsuffix .lit,$(basename $@))
770         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o $@ $(addsuffix .itxi,$(basename $@))
771         @chmod 444 $@
772 #
773 # Rather than using lit2html, we opt for the lit-texi-html route,
774 # and use texi2html as our HTML backend.
775 # (Note: we need to change mkdependlit to get this really off the ground)
776 #
777 # If the generated html representation is split up into a myriad of files,
778 # put the files in a subdirectory html/, if a monolith is created, park
779 # the generated file in the same dir as the .lit file.
780 #
781 $(filter %.html,$(patsubst %.lit,%.html,$(DOC_SRCS))) : $(filter %.lit,$(DOC_SRCS))
782         $(RM) $@ $(patsubst %.html,%.texi,$@) $(patsubst %.html,%.itxi,$@)
783 ifneq "$(filter -monolithic,$(TEXI2HTML_OPTS))" ""
784         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.itxi,$@) $(addsuffix .lit,$(basename $@))
785         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.texi,$@) $(addsuffix .itxi,$(basename $@))
786         $(TEXI2HTML) $(TEXI2HTML_OPTS) $(patsubst %.html,%.texi,$@)
787         cp $(TEXI2HTML_PREFIX)invisible.xbm .
788 else
789         $(RM) html/$(basename $@)*
790         $(MKDIRHIER) html
791         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.itxi,$@) $(addsuffix .lit,$(basename $@))
792         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o html/$(patsubst %.html,%.texi,$@) $(addsuffix .itxi,$(basename $@))
793         (cd html; ../$(TEXI2HTML) $(TEXI2HTML_OPTS) $(patsubst %.html,%.texi,$@); cd ..)
794         cp $(TEXI2HTML_PREFIX)invisible.xbm html/
795         @touch $@
796 endif
797 ###########################################
798 #
799 #       Targets: clean
800 #
801 ###########################################
802
803 .PHONY: realclean mostlyclean clean distclean maintainer-clean
804
805 # realclean is just a synonym for maintainer-clean
806 realclean: maintainer-clean
807
808
809 ifneq "$(MOSTLY_CLEAN_FILES)" ""
810 mostlyclean::
811         rm -f $(MOSTLY_CLEAN_FILES)
812 endif
813
814 ifneq "$(CLEAN_FILES)" ""
815 clean:: mostlyclean
816         rm -f $(CLEAN_FILES)
817 endif
818
819
820 ifneq "$(DIST_CLEAN_FILES)" ""
821 distclean:: mostlyclean clean
822         rm -f $(DIST_CLEAN_FILES)
823 endif
824
825
826 ifneq "$(MAINTAINER_CLEAN_FILES)" ""
827 maintainer-clean:: mostlyclean clean distclean
828         @echo 'This command is intended for maintainers to use; it'
829         @echo 'deletes files that may need special tools to rebuild.'
830         rm -f $(MAINTAINER_CLEAN_FILES)
831 endif
832
833 #
834 # If (Haskell) object files are split, cleaning up 
835 # consist of descending into the directories where
836 # the myriads of object files have been put.
837 #
838
839 ifneq "$(HS_OBJS)" ""
840 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
841 clean ::
842         find $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food;
843 endif
844 endif
845
846
847 #################################################################################
848 #
849 #                       Way management
850 #
851 #################################################################################
852
853 # Here is the ingenious jiggery pokery that allows you to build multiple versions
854 # of a program in a single build tree.
855 #
856 # The ways setup requires the following variables to be set:
857 #
858 # Expects:      $(WAYS)                 the possible "way" strings to one of 
859 #                                       which $(way) will be set
860
861
862 # So how does $(way) ever get set to anything?  Answer, we recursively
863 # invoke make, setting $(way) on the command line.
864 # When do we do this recursion?  Answer: whenever the programmer
865 # asks make to make a target that involves a way suffix.
866 # We must remember *not* to recurse again; but that's easy: we
867 # just see if $(way) is set:
868
869 ifeq "$(way)" ""
870
871 # If $(WAYS) = p mc, then WAY_TARGETS expands to
872 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
873 # and OTHER_WAY_TARGETS to
874 #       %_p.a %_p %_mc.a %_mc
875 # where the suffixes are from $(SUFFIXES)
876 #
877 # We have to treat libraries and "other" targets differently, 
878 # because their names are of the form
879 #       libHS_p.a and Foo_p
880 # whereas everything else has names of the form
881 #       Foo.p_o
882
883 FPTOOLS_SUFFIXES := o hi hc
884
885 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
886 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
887
888 # $@ will be something like Foo.p_o
889 # $(suffix $@) will be .p_o
890 # The sed script extracts the "p" part.
891
892 $(WAY_TARGETS) :
893         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
894
895 # $(@F) will be something like libHS_p.a, or Foo_p
896 # $(basename $(@F)) will be libHS_p, or Foo_p
897 # The sed script extracts the "p" part.
898
899 $(LIB_WAY_TARGETS) :
900         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
901
902 endif   # if way
903
904
905 ##################################################################
906 #
907 #               Recursive stuff
908 #
909 ##################################################################
910
911 # Here are the diabolically clever rules that
912
913 # (a) for each "recursive target" <t>
914 #     propagates "make <t>" to directories in SUBDIRS
915 #
916 # (b) when SUBDIRS is empty,
917 #     for each "multi-way-target" <t>
918 #     calls "make -way=w <t>" for each w in $(WAYS)
919 #
920 #     This has the effect of making the standard target
921 #     in each of the specified ways (as well as in the normal way
922
923 # Controlling variables
924 #       WAYS    = extra (beyond the normal way) ways to build things in
925 #       SUBDIRS = subdirectories to recurse into
926
927 # No ways, so iterate over the SUBDIRS
928
929 ifeq "$(way)" ""
930 ifneq "$(SUBDIRS)" ""
931
932 all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
933         @case '${MFLAGS}' in *[ik]*) set +e;; esac;
934         @echo "------------------------------------------------------------------------"
935         @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
936         @echo "PWD = $(shell pwd)"
937         @echo "------------------------------------------------------------------------"
938         @for i in $(SUBDIRS) ; do \
939           echo "------------------------------------------------------------------------"; \
940           echo "==fptools== $(MAKE) $@;"; \
941           echo " in $(shell pwd)/$$i"; \
942           echo "------------------------------------------------------------------------"; \
943           $(MAKE) --no-print-directory -C $$i $(MFLAGS) $@; \
944         done
945         @echo "------------------------------------------------------------------------"
946         @echo "===fptools== Finished making \`$@' in $(SUBDIRS) ..."
947         @echo "PWD = $(shell pwd)"
948         @echo "------------------------------------------------------------------------"
949
950 dist ::
951         @case '${MFLAGS}' in *[ik]*) set +e;; esac; \
952         for i in $(SUBDIRS) ; do \
953           $(MKDIRHIER_PREFIX)mkdirhier $(SRC_DIST_DIR)/$$i; \
954           $(MAKE) -C $$i $(MFLAGS) $@ SRC_DIST_DIR=$(SRC_DIST_DIR)/$$i; \
955         done
956 endif
957 endif
958
959 #
960 # Selectively building subdirectories.
961 #
962 #
963 ifneq "$(SUBDIRS)" ""
964 $(SUBDIRS) ::
965           $(MAKE) -C $@ $(MFLAGS)
966 endif
967
968 ifneq "$(WAYS)" ""
969 ifeq "$(way)" ""
970
971 # NB: the targets exclude 
972 #       boot info TAGS
973 # since these are way-independent
974 all docs runtests TAGS clean veryclean maintainer-clean install ::
975         @echo "------------------------------------------------------------------------"
976         @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
977         @echo "PWD = $(shell pwd)"
978         @echo "------------------------------------------------------------------------"
979         @for i in $(WAYS) ; do \
980           echo "------------------------------------------------------------------------"; \
981           echo "==fptools== $(MAKE) way=$$i $@;"; \
982           echo "PWD = $(shell pwd)"; \
983           echo "------------------------------------------------------------------------"; \
984           $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
985         done
986         @echo "------------------------------------------------------------------------"
987         @echo "===fptools== Finished recusrively making \`$@' for ways: $(WAYS) ..."
988         @echo "PWD = $(shell pwd)"
989         @echo "------------------------------------------------------------------------"
990
991 endif
992 endif
993