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