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