93f131caafb9b9a2a52c755ab62afde1b7a1c813
[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 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
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 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
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         touch dLL_ifs.hi
500 endif
501
502 #
503 # Version information is baked into a DLL by having the DLL include DllVersionInfo.o.
504 # The version info contains two user tweakables: DLL_VERSION and DLL_VERSION_NAME.
505 # (both are given sensible defaults though.)
506 #
507 # Note: this will not work as expected with Cygwin B20.1; you need a more recent
508 #       snapshot of binutils (to pick up windres bugfixes.)
509
510 ifndef DLL_VERSION
511 DLL_VERSION=$(ProjectVersion)
512 endif
513
514 ifndef DLL_VERSION_NAME
515 DLL_VERSION_NAME="http://www.haskell.org/ghc"
516 endif
517
518 ifndef DLL_DESCRIPTION
519 DLL_DESCRIPTION="A GHC-compiled DLL"
520 endif
521
522 ifndef EXE_VERSION
523 EXE_VERSION=$(ProjectVersion)
524 endif
525
526 ifndef EXE_VERSION_NAME
527 EXE_VERSION_NAME="http://www.haskell.org/ghc"
528 endif
529
530 ifndef EXE_DESCRIPTION
531 EXE_DESCRIPTION="A GHC-compiled binary"
532 endif
533
534 #
535 # Little bit of lo-fi mangling to get at the right set of settings depending
536 # on whether we're generating the VERSIONINFO for a DLL or EXE
537
538 DLL_OR_EXE=$(subst VersionInfo.rc,,$@)
539 VERSION_FT=$(subst Dll, 0x2L, $(subst Exe, 0x1L, $(DLL_OR_EXE)))
540 VERSION_RES_NAME=$(subst Exe,$(EXE_VERSION_NAME), $(subst Dll, $(DLL_VERSION_NAME),$(DLL_OR_EXE)))
541 VERSION_RES=$(subst Exe,$(EXE_VERSION), $(subst Dll, $(DLL_VERSION),$(DLL_OR_EXE)))
542 VERSION_DESC=$(subst Exe,$(EXE_DESCRIPTION), $(subst Dll, $(DLL_DESCRIPTION),$(DLL_OR_EXE)))
543
544 DllVersionInfo.rc ExeVersionInfo.rc:
545         $(RM) DllVersionInfo.rc
546         echo "1 VERSIONINFO"                > $@
547         echo "FILEVERSION 1,0,0,1"         >> $@
548         echo "PRODUCTVERSION 1,0,0,1"      >> $@
549         echo "FILEFLAGSMASK 0x3fL"         >> $@
550         echo "FILEOS 0x4L"                 >> $@
551         echo "FILETYPE $(VERSION_FT)"      >> $@
552         echo "FILESUBTYPE 0x0L"            >> $@
553         echo "BEGIN"                       >> $@
554         echo " BLOCK \"StringFileInfo\""   >> $@
555         echo " BEGIN"                      >> $@
556         echo "  BLOCK \"040904B0\""        >> $@
557         echo "  BEGIN"                     >> $@
558         echo "   VALUE \"CompanyName\", \"$(VERSION_RES_NAME)\\0\"" >> $@
559         echo "   VALUE \"FileVersion\", \"$(VERSION_RES)\\0\"" >> $@
560         echo "   VALUE \"ProductVersion\", \"$(VERSION_RES)\\0\"" >> $@
561         echo "   VALUE \"FileDescription\", \"$(VERSION_DESC)\\0\"" >> $@
562         echo "  END" >> $@
563         echo " END" >> $@
564         echo " BLOCK \"VarFileInfo\""  >> $@
565         echo " BEGIN" >> $@
566         echo "  VALUE \"Translation\", 0x0409, 1200" >> $@
567         echo " END" >> $@
568         echo "END" >> $@
569
570 #----------------------------------------
571 #       Script programs
572
573 ifneq "$(SCRIPT_PROG)" ""
574
575 # To produce a fully functional script, you may
576 # have to add some configuration variables at the top of 
577 # the script, i.e., the compiler driver needs to know
578 # the path to various utils in the build tree for instance.
579 #
580 # To have the build rule for the script automatically do this
581 # for you, set the variable SCRIPT_SUBST_VARS to the list of
582 # variables you need to put in.
583
584 #
585 # SCRIPT_SUBST creates a string of echo commands that
586 # will when evaluated append the (perl)variable name and its value 
587 # to the target it is used for, i.e.,
588 #
589 #    A=foo
590 #    B=bar
591 #    SCRIPT_SUBST_VARS = A B
592 #    SCRIPT_SUBST=echo "$""A=\"foo\";" >> $@; echo "$""B=\"bar\";" >> $@
593 #
594 #    so if you have a rule like the following
595 #    
596 #     foo:
597 #         @(RM) $@
598 #         @(TOUCH) $@
599 #         @eval $(SCRIPT_SUBST)
600 #
601 #    `make foo' would create a file `foo' containing the following
602 #
603 #    % cat foo
604 #    $A=foo;
605 #    $B=bar;
606 #    %
607 #
608 # ToDo: make this work for shell scripts (drop the initial $).
609 #
610 ifeq "$(INTERP)" "$(SHELL)"
611 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$(val)=\\\"$($(val))\\\";\" >> $@;")
612 else
613 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$$\"\"$(val)=\\\"$($(val))\\\";\" >> $@;")
614 endif
615
616 all :: $(SCRIPT_PROG)
617
618 #
619 # #! support under cygwin32 is not quite there yet, 
620 # so we rely on the eval `trick' instead. On all other
621 # platforms, we prepend #!$(INTERP)  -- SOF 6/97
622
623
624 $(SCRIPT_PROG) :: $(SCRIPT_OBJS)
625         $(RM) $@
626         @echo Creating $@...
627 ifeq "$(INTERP)" "perl"
628         echo "#! "$(PERL) > $@
629 else
630 ifneq "$(INTERP)" ""
631         @echo "#!"$(INTERP) > $@
632 else
633         @touch $@
634 endif
635 endif
636 ifneq "$(SCRIPT_PREFIX_FILES)" ""
637         @cat $(SCRIPT_PREFIX_FILES) >> $@
638 endif
639         @eval $(SCRIPT_SUBST) 
640         @cat $(SCRIPT_OBJS) >> $@
641         @chmod a+x $@
642         @echo Done.
643 endif
644
645 # links to script programs: we sometimes install a script as
646 # <name>-<version> with a link from <name> to the real script.
647
648 ifneq "$(SCRIPT_LINK)" ""
649 all :: $(SCRIPT_LINK)
650
651 #
652 # Don't want to overwrite $(SCRIPT_LINK)s that aren't symbolic
653 # links. Testing for symbolic links is problematic to do in
654 # a portable fashion using a /bin/sh test, so we simply rely
655 # on perl.
656 #
657 $(SCRIPT_LINK) : $(SCRIPT_PROG)
658         @if ( $(PERL) -e '$$fn="$(SCRIPT_LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
659            echo "Creating a symbolic link from $(SCRIPT_PROG) to $(SCRIPT_LINK)"; \
660            $(RM) $(SCRIPT_LINK); \
661            $(LN_S) $(SCRIPT_PROG) $(SCRIPT_LINK); \
662          else \
663            echo "Creating a symbolic link from $(SCRIPT_PROG) to $(SCRIPT_LINK) failed: \`$(SCRIPT_LINK)' already exists"; \
664            echo "Perhaps remove \`$(SCRIPT_LINK)' manually?"; \
665            exit 1; \
666          fi;
667 endif
668
669
670
671 ###########################################
672 #
673 #       Targets: install install-strip uninstall
674 #
675 ###########################################
676
677 # For each of these variables that is defined, you
678 # get one install rule
679 #
680 #       INSTALL_PROGS        executable programs in $(bindir)
681 #       INSTALL_SCRIPTS      executable scripts in $(bindir)
682 #       INSTALL_LIBS         platform-dependent libraries in $(libdir) (ranlib'ed)
683 #       INSTALL_LIB_SCRIPTS  platform-dependent scripts   in $(libdir)
684 #       INSTALL_LIBEXECS     platform-dependent execs in $(libdir)
685 #       INSTALL_DATAS        platform-independent files in $(datadir)
686 #
687 # If the installation directory variable is undefined, the install rule simply
688 # emits a suitable error message.
689 #
690 # Remember, too, that the installation directory variables ($(bindir) and
691 # friends can be overridden from their original settings in mk/config.mk.in
692 # || mk/build.mk
693 #
694 .PHONY: install installdirs install-strip install-dirs uninstall install-docs show-install
695
696 show-install :
697         @echo "bindir = $(bindir)"
698         @echo "libdir = $(libdir)"
699         @echo "libexecdir = $(libexecdir)  # by default, same as libdir"
700         @echo "datadir = $(datadir)  # unused for ghc project"
701
702 #
703 # Sometimes useful to separate out the creation of install directories 
704 # from the installation itself.
705 #
706 install-dirs ::
707         @$(INSTALL_DIR) $(bindir)
708         @$(INSTALL_DIR) $(libdir)
709         @$(INSTALL_DIR) $(libexecdir)
710         @$(INSTALL_DIR) $(datadir)
711
712 # Better do this first...
713 # but we won't for the moment, do it on-demand from
714 # within the various install targets instead.
715 #install:: install-dirs
716
717 ifneq "$(INSTALL_PROGS)" ""
718
719 #
720 # Here's an interesting one - when using the win32 version
721 # of install (provided via the cygwin toolkit), we have to
722 # supply the .exe suffix, *if* there's no other suffix.
723 #
724 # The rule below does this by ferreting out the suffix of each
725 # entry in the INSTALL_PROGS list. If there's no suffix, use
726 # $(exeext).
727
728 # This is bit of a pain to express since GNU make doesn't have
729 # something like $(if ...), but possible using $(subst ..)
730 # [Aside: I added support for $(if ..) to my local copy of GNU
731 # make at one stage, perhaps I should propagate the patch to
732 # the GNU make maintainers..] 
733 #
734 INSTALL_PROGS := $(foreach p, $(INSTALL_PROGS), $(addsuffix $(subst _,,$(subst __,$(exeext),_$(suffix $(p))_)), $(basename $(p))))
735
736 install:: $(INSTALL_PROGS)
737         @$(INSTALL_DIR) $(bindir)
738         @for i in $(INSTALL_PROGS); do \
739                     echo $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir); \
740                     $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir) ;  \
741         done
742 endif
743
744 #
745 # Just like INSTALL_PROGS, but prefix with install sites bin/lib/data and
746 # install without stripping.
747 #
748 ifneq "$(INSTALL_SCRIPTS)" ""
749 install:: $(INSTALL_SCRIPTS)
750         @$(INSTALL_DIR) $(bindir)
751         for i in $(INSTALL_SCRIPTS); do \
752                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(bindir); \
753         done
754 endif
755
756 ifneq "$(INSTALL_LIB_SCRIPTS)" ""
757 install:: $(INSTALL_LIB_SCRIPTS)
758         @$(INSTALL_DIR) $(libdir)
759         for i in $(INSTALL_LIB_SCRIPTS); do \
760                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libdir); \
761         done
762 endif
763
764 ifneq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
765 install:: $(INSTALL_LIBEXEC_SCRIPTS)
766         @$(INSTALL_DIR) $(libexecdir)
767         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
768                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libexecdir); \
769         done
770 endif
771
772 ifneq "$(INSTALL_LIBS)" ""
773 install:: $(INSTALL_LIBS)
774         @$(INSTALL_DIR) $(libdir)
775         for i in $(INSTALL_LIBS); do \
776                 case $$i in \
777                   *.a) \
778                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
779                     $(RANLIB) $(libdir)/`basename $$i` ;; \
780                   *.dll) \
781                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i $(libdir) ;; \
782                   *) \
783                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
784                 esac; \
785         done
786 endif
787
788 ifneq "$(INSTALL_LIBEXECS)" ""
789 #
790 # See above comment next to defn of INSTALL_PROGS for what
791 # the purpose of this one-liner is.
792
793 INSTALL_LIBEXECS := $(foreach p, $(INSTALL_LIBEXECS), $(addsuffix $(subst _,,$(subst __,$(exeext),_$(suffix $(p))_)), $(basename $(p))))
794
795 install:: $(INSTALL_LIBEXECS)
796         @$(INSTALL_DIR) $(libexecdir)
797         -for i in $(INSTALL_LIBEXECS); do \
798                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(libexecdir); \
799         done
800 endif
801
802 ifneq "$(INSTALL_DATAS)" ""
803 install:: $(INSTALL_DATAS)
804         @$(INSTALL_DIR) $(datadir)
805         for i in $(INSTALL_DATAS); do \
806                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
807         done
808 endif
809
810 #
811 # Use with care..
812 #
813 uninstall:: 
814         @for i in $(INSTALL_PROGS) "" ; do                      \
815           if test "$$i"; then                                   \
816                 echo rm -f $(bindir)/`basename $$i`;            \
817                 rm -f $(bindir)/`basename $$i`;                 \
818           fi;                                                   \
819         done
820         @for i in $(INSTALL_LIBS) ""; do                        \
821           if test "$$i"; then                                   \
822                 echo rm -f $(libdir)/`basename $$i`;            \
823                 rm -f $(libdir)/`basename $$i`;                 \
824           fi;                                                   \
825         done
826         @for i in $(INSTALL_LIBEXECS) ""; do                    \
827           if test "$$i"; then                                   \
828                 echo rm -f $(libexecdir)/`basename $$i`;        \
829                 rm -f $(libexecdir)/`basename $$i`;             \
830           fi;                                                   \
831         done
832         @for i in $(INSTALL_DATAS) ""; do                       \
833           if test "$$i"; then                                   \
834                 echo rm -f $(datadir)/`basename $$i`;           \
835                 rm -f $(datadir)/`basename $$i`;                \
836           fi;                                                   \
837         done
838
839 #
840 # install-strip is from the GNU Makefile standard.
841 #
842 ifneq "$(way)" ""
843 install-strip::
844         @$(MAKE) EXTRA_INSTALL_OPTS='-s' install                                        
845 endif
846
847 #
848 # install links to script drivers.
849 #
850 ifneq "$(SCRIPT_LINK)" ""
851 install ::
852         @if ( $(PERL) -e '$$fn="$(bindir)/$(SCRIPT_LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
853            echo "Creating a symbol link from $(SCRIPT_PROG) to $(SCRIPT_LINK) in $(bindir)"; \
854            $(RM) $(bindir)/$(SCRIPT_LINK); \
855            $(LN_S) $(SCRIPT_PROG) $(bindir)/$(SCRIPT_LINK); \
856          else \
857            echo "Creating a symbol link from $(SCRIPT_PROG) to $(SCRIPT_LINK) in $(bindir) failed: \`$(bindir)/$(SCRIPT_LINK)' already exists"; \
858            echo "Perhaps remove \`$(bindir)/$(SCRIPT_LINK)' manually?"; \
859            exit 1; \
860          fi;
861
862 endif
863
864 ###########################################
865 #
866 #       Targets: dist binary-dist
867 #
868 ###########################################
869
870
871 #
872 # dist-pre is a canned rule the toplevel of your source tree
873 # would use as follows, 
874 #
875 #  dist :: dist-pre
876 #
877 # it performs two tasks, first creating the distribution directory
878 # tree and it then decorates the new tree with symbolic links pointing
879 # to the symbolic links in the build tree.
880 #
881 # The dist-pre relies on (at least) the `find' in GNU findutils
882 # (only tested with version 4.1). All non-GNU `find's I have
883 # laid on my hands locally, has a restrictive treatment of {} in
884 # -exec commands, i.e.,
885 #
886 #   find . -print echo a{} \;
887 #   
888 # does not expand the {}, it has to be a separate argument (i.e. `a {}').
889 # GNU find is (IMHO) more sensible here, expanding any {} it comes across
890 # inside an -exec, whether it is a separate arg or part of a word:
891 #
892 #  $ touch yes
893 #  $ find --version
894 #    GNU find version 4.1
895 #  $ find yes -exec echo oh,{}! \;
896 #    oh,yes!
897 #
898 # Of course, the above is not impossible to achieve with other finds,
899 # just that GNU find does the Patently Right Thing here :)
900 #
901 # ====> if you're using these dist rules, get hold of GNU findutils.
902 #
903 #  --SOF 2/97
904 #
905 .PHONY: dist dist-pre dist-post
906
907 #
908 # The dist rules leaves out CVS, SRC (from mkshadowdir) and tests
909 # directories when creating shadow source distrib tree
910 #
911 dist-pre::
912         -rm -rf $(SRC_DIST_DIR)
913         -rm -f $(SRC_DIST_NAME).tar.gz
914         (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)/{} \; \) ; )
915         (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)/{} \; )
916
917 #
918 # After having created a shadow distribution tree and copied/linked
919 # all the necessary files to it, `dist-post' makes sure the permissions
920 # are set right and then package up the tree. Empty directories are also removed.
921 #
922 # For now, we make the packaging a separate rule, so as to allow
923 # the inspection of the dist tree before eventually packaging it up.
924 #
925 dist-post::
926         @echo Deleting the following empty directories..
927         ( 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 )
928         ( cd $(SRC_DIST_DIR) ; cd .. ; chmod -R a+rw $(SRC_DIST_NAME) ) 
929
930 # Automatic generation of a MANIFEST file for a source distribution
931 # tree that is ready to go.
932 dist-manifest ::
933         cd $(SRC_DIST_DIR); $(FIND) . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > /tmp/MANIFEST ; mv /tmp/MANIFEST MANIFEST
934
935 dist-package:: dist-package-tar-gz
936
937 dist-package-tar-gz ::
938         cd $(SRC_DIST_DIR); cd ..; $(TAR) chzf $(SRC_DIST_NAME).tar.gz $(SRC_DIST_NAME)
939
940 dist-package-zip ::
941         cd $(SRC_DIST_DIR); cd ..; $(ZIP) $(ZIP_OPTS) -r $(SRC_DIST_NAME).zip $(SRC_DIST_NAME)
942
943 ###########################################
944 #
945 #       Targets: check tags show info
946 #
947 ###########################################
948
949 #------------------------------------------------------------
950 #                       Check
951
952 .PHONY: check
953
954 check:: $(TESTS)
955         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
956           if (test -f "$$i"); then              \
957             echo Running: `basename $$i` ;      \
958             cd test; `basename $$i` ;           \
959           fi;                                   \
960         done;
961
962 #------------------------------------------------------------
963 #                       Tags
964
965 .PHONY: TAGS tags
966
967 tags TAGS:: $(TAGS_HS_SRCS) $(TAGS_C_SRCS)
968         @$(RM) TAGS
969         @touch TAGS
970 ifneq "$(TAGS_HS_SRCS)" ""
971         $(HSTAGS) $(HSTAGS_OPTS) -- $(TAGS_HS_SRCS)
972 endif
973 ifneq "$(TAGS_C_SRCS)" ""
974         etags -a $(TAGS_C_SRCS)
975 endif
976         @( 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?
977
978 #------------------------------------------------------------
979 #                       Makefile debugging
980 # to see the effective value used for a Makefile variable, do
981 #  make show VALUE=MY_VALUE
982 #
983
984 show:
985         @echo '$(VALUE)=$($(VALUE))'
986
987 #--------------------------------------------------------------------------
988 # SGML Documentation
989 #
990 .PHONY: dvi ps html pdf rtf
991
992 ifneq "$(SGML_DOC)" ""
993
994 # multi-file SGML document: main document name is specified in $(SGML_DOC),
995 # sub-documents (.sgml files) listed in $(SGML_SRCS).
996
997 ifeq "$(VSGML_SRCS)" ""
998 VSGML_SRCS = $(wildcard *.vsgml)
999 endif
1000
1001 ifeq "$(SGML_SRCS)" ""
1002 ifneq "$(VSGML_SRCS)" ""
1003 SGML_SRCS = $(patsubst %.vsgml, %.sgml, $(VSGML_SRCS))
1004 else
1005 SGML_SRCS = $(wildcard *.sgml)
1006 endif
1007 endif
1008
1009 SGML_TEX  = $(SGML_DOC).tex
1010 SGML_DVI  = $(SGML_DOC).dvi
1011 SGML_PS   = $(SGML_DOC).ps
1012 SGML_PDF  = $(SGML_DOC).pdf
1013 SGML_RTF  = $(SGML_DOC).rtf
1014 SGML_HTML = $(SGML_DOC).html
1015 # HTML output goes in a subdirectory on its own.
1016 SGML_TEXT = $(SGML_DOC).txt
1017
1018 $(SGML_DVI) $(SGML_PS) $(SGML_INFO) $(SGML_HTML) $(SGML_TEXT) :: $(SGML_SRCS)
1019
1020 dvi  :: $(SGML_DVI)
1021 ps   :: $(SGML_PS)
1022 pdf  :: $(SGML_PDF)
1023 rtf  :: $(SGML_RTF)
1024 html :: $(SGML_HTML)
1025 txt  :: $(SGML_TEXT)
1026
1027 CLEAN_FILES += $(SGML_TEXT) $(SGML_TEX) $(SGML_PS) $(SGML_DVI) $(SGML_PDF) $(SGML_RTF) $(SGML_HTML) $(SGML_DOC)-*.html
1028 # can't use $(SGML_SRCS) here, it was maybe used elsewhere
1029 MOSTLY_CLEAN_FILES += $(patsubst %.vsgml, %.sgml, $(VSGML_SRCS))
1030
1031 clean ::
1032         $(RM) -rf $(SGML_DOC)
1033
1034 endif
1035
1036 ###########################################
1037 #
1038 #       Targets: clean
1039 #
1040 ###########################################
1041
1042 .PHONY: realclean mostlyclean clean distclean maintainer-clean
1043
1044 # realclean is just a synonym for maintainer-clean
1045 realclean: maintainer-clean
1046
1047
1048 ifneq "$(MOSTLY_CLEAN_FILES)" ""
1049 mostlyclean::
1050         rm -f $(MOSTLY_CLEAN_FILES)
1051 endif
1052
1053 ifneq "$(CLEAN_FILES)" ""
1054 clean:: mostlyclean
1055         rm -f $(CLEAN_FILES)
1056 endif
1057
1058
1059 ifneq "$(DIST_CLEAN_FILES)" ""
1060 distclean:: mostlyclean clean
1061         rm -f $(DIST_CLEAN_FILES)
1062 endif
1063
1064
1065 ifneq "$(MAINTAINER_CLEAN_FILES)" ""
1066 maintainer-clean:: mostlyclean clean distclean
1067         @echo 'This command is intended for maintainers to use; it'
1068         @echo 'deletes files that may need special tools to rebuild.'
1069         rm -f $(MAINTAINER_CLEAN_FILES)
1070 endif
1071
1072 #
1073 # If (Haskell) object files are split, cleaning up 
1074 # consist of descending into the directories where
1075 # the myriads of object files have been put.
1076 #
1077
1078 ifneq "$(HS_OBJS)" ""
1079 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
1080 clean ::
1081         $(FIND) $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food
1082         -rmdir $(patsubst %.$(way_)o,%,$(HS_OBJS)) > /dev/null 2>&1
1083 endif
1084 endif
1085
1086
1087 #################################################################################
1088 #
1089 #                       Way management
1090 #
1091 #################################################################################
1092
1093 # Here is the ingenious jiggery pokery that allows you to build multiple versions
1094 # of a program in a single build tree.
1095 #
1096 # The ways setup requires the following variables to be set:
1097 #
1098 # Expects:      $(WAYS)                 the possible "way" strings to one of 
1099 #                                       which $(way) will be set
1100
1101
1102 # So how does $(way) ever get set to anything?  Answer, we recursively
1103 # invoke make, setting $(way) on the command line.
1104 # When do we do this recursion?  Answer: whenever the programmer
1105 # asks make to make a target that involves a way suffix.
1106 # We must remember *not* to recurse again; but that's easy: we
1107 # just see if $(way) is set:
1108
1109 ifeq "$(way)" ""
1110
1111 # If $(WAYS) = p mc, then WAY_TARGETS expands to
1112 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
1113 # and OTHER_WAY_TARGETS to
1114 #       %_p.a %_p %_mc.a %_mc
1115 # where the suffixes are from $(SUFFIXES)
1116 #
1117 # We have to treat libraries and "other" targets differently, 
1118 # because their names are of the form
1119 #       libHS_p.a and Foo_p
1120 # whereas everything else has names of the form
1121 #       Foo.p_o
1122
1123 FPTOOLS_SUFFIXES := o hi hc
1124
1125 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
1126 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
1127
1128 # $@ will be something like Foo.p_o
1129 # $(suffix $@)     returns .p_o
1130 # $(subst .,.p_o)  returns p_o
1131 # $(subst _,.,p_o) returns p.o   (clever)
1132 # $(basename p.o)  returns p
1133
1134 $(WAY_TARGETS) :
1135         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
1136
1137 # $(@F) will be something like libHS_p.a, or Foo_p
1138 # $(basename $(@F)) will be libHS_p, or Foo_p
1139 # The sed script extracts the "p" part.
1140
1141 $(LIB_WAY_TARGETS) :
1142         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
1143
1144 endif   # if way