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