[project @ 2002-01-30 13:13:55 by simonmar]
[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 #       install-docs*
20 #       clean* distclean* mostlyclean* maintainer-clean*
21 #       tags*
22 #       dvi ps (no info) FPTOOLS adds: pdf rtf html
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 # Pre-compute the list of sources so we don't have to do this 
38 # multiple times.  See paths.mk.
39
40 PRE_SRCS := $(ALL_SRCS)
41
42 ##################################################################
43 #               FPtools standard targets
44 #
45 # depend:
46 #
47 #  The depend target has to cope with a set of files that may have
48 #  different ways of computing their dependencies, i.e., a Haskell
49 #  module's dependencies are computed differently from C files.
50 #
51 # Note that we don't compute dependencies automatically, i.e., have the
52 # .depend file be a target that is dependent on the Haskell+C sources,
53 # and then have the `depend' target depend on `.depend'. The reason for
54 # this is that when GNU make is processing the `include .depend' statement
55 # it records .depend as being a Makefile. Before doing any other processing,
56 # `make' will try to check to see if the Makefiles are up-to-date. And,
57 # surprisingly enough, .depend has a rule for it, so if any of the source
58 # files change, it will be invoked, *regardless* of what target you're making.
59 #
60 # So, for now, the dependencies has to be re-computed manually via `make depend'
61 # whenever a module changes its set of imports. Doing what was outlined above
62 # is only a small optimisation anyway, it would avoid the recomputation of
63 # dependencies if the .depend file was newer than any of the source modules.
64 #
65 .PHONY: depend
66
67 # Compiler produced files that are targets of the source's imports.
68 MKDEPENDHS_OBJ_SUFFICES=o
69
70 depend :: $(MKDEPENDHS_SRCS) $(MKDEPENDC_SRCS)
71         @$(RM) .depend
72         @touch .depend
73 ifneq "$(DOC_SRCS)" ""
74         $(MKDEPENDLIT) -o .depend $(MKDEPENDLIT_OPTS) $(filter %.lit,$(DOC_SRCS))
75 endif
76 ifneq "$(MKDEPENDC_SRCS)" ""
77         $(MKDEPENDC) -f .depend $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(MKDEPENDC_SRCS) 
78 endif
79 ifneq "$(MKDEPENDHS_SRCS)" ""
80         $(MKDEPENDHS) -M -optdep-f -optdep.depend $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(foreach obj,$(MKDEPENDHS_OBJ_SUFFICES),-osuf $(obj)) $(MKDEPENDHS_OPTS) $(filter-out -split-objs, $(HC_OPTS)) $(MKDEPENDHS_SRCS)
81 endif
82
83
84 ##################################################################
85 #                       boot
86 #
87 #  The boot target, at a minimum generates dependency information
88
89 .PHONY: boot
90
91 ifeq "$(NO_BOOT_TARGET)" "YES"
92 boot ::
93 else
94 boot :: depend
95 endif
96
97 ##################################################################
98 #               GNU Standard targets
99 #
100 #       Every Makefile should define the following targets
101
102 # `all'
103 #      Compile the entire program. This should be the default target.
104 #      This target need not rebuild any documentation files
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 # `uninstall'
124 #      Delete all the installed files that the `install' target would
125 #      create (but not the noninstalled files such as `make all' would
126 #      create).
127
128 # `clean'
129
130 #      Delete all files from the current directory that are normally
131 #      created by building the program.  Don't delete the files that
132 #      record the configuration. Also preserve files that could be made
133 #      by building, but normally aren't because the distribution comes
134 #      with them.
135
136 #      Delete `.dvi' files here if they are not part of the
137 #      distribution.
138
139 # `distclean'
140 #      Delete all files from the current directory that are created by
141 #      configuring or building the program. If you have unpacked the
142 #      source and built the program without creating any other files,
143 #      `make distclean' should leave only the files that were in the
144 #      distribution.
145
146 # `mostlyclean'
147 #      Like `clean', but may refrain from deleting a few files that
148 #      people normally don't want to recompile. For example, the
149 #      `mostlyclean' target for GCC does not delete `libgcc.a', because
150 #      recompiling it is rarely necessary and takes a lot of time.
151
152 # `maintainer-clean'
153 #      Delete everything from the current directory that can be
154 #      reconstructed with this Makefile.  This typically includes
155 #      everything deleted by distclean , plus more: C source files
156 #      produced by Bison, tags tables, and so on.
157
158 #      One exception, however: `make maintainer-clean' should not delete
159 #      `configure' even if `configure' can be remade using a rule in the
160 #      Makefile. More generally, `make maintainer-clean' should not delete
161 #      anything that needs to exist in order to run `configure' and then
162 #      begin to build the program.
163
164 # `TAGS'
165 #      Update a tags table for this program.
166
167 # `dvi' `ps' `pdf' `html' `pdf'
168 #      Generate DVI/PS/PDF files for LaTeX/DocBook docs. Not everything is
169 #      supported everywhere, but the intention is to standardise on DocBook
170 #      producing all formats.
171 #
172 # `check'
173 #      Perform self-tests (if any). The user must build the program
174 #      before running the tests, but need not install the program; you
175 #      should write the self-tests so that they work when the program is
176 #      built but not installed.
177
178 # The following targets are suggested as conventional names, for programs
179 # in which they are useful.
180
181 # installcheck
182 #      Perform installation tests (if any). The user must build and
183 #      install the program before running the tests. You should not
184 #      assume that `$(bindir)' is in the search path.
185
186 # installdirs
187 #      It's useful to add a target named `installdirs' to create the
188 #      directories where files are installed, and their parent
189 #      directories. There is a script called `mkinstalldirs' which is
190 #      convenient for this; find it in the Texinfo package.
191 #      (FPTOOLS: we use a close relative of the suggested script, situated
192 #       in glafp-utils/mkdirhier -- SOF)
193
194
195
196
197 ###########################################
198 #
199 #       Targets: "all"
200 #
201 ###########################################
202
203 # For each of these variables that is defined
204 # we generate one "all" rule and one rule for the variable itself:
205 #
206 #       HS_PROG         Haskell program
207 #       C_PROG          C program
208 #       LIBRARY         Library
209 #       SCRIPT_PROG     Script (e.g. Perl script)
210 #
211 # For details of exactly what rule is generated, see the
212 # relevant section below
213
214 .PHONY: all
215
216 #----------------------------------------
217 #       Haskell programs
218
219 ifneq "$(HS_PROG)" ""
220 all :: $(HS_PROG)
221
222 ifneq "$(BootingFromHc)" "YES"
223 $(HS_PROG) :: $(HS_OBJS)
224         $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(HS_OBJS)
225 else
226 # see bootstrap.mk
227 $(HS_PROG) :: $(HS_OBJS)
228         $(CC) -o $@ $(HC_BOOT_CC_OPTS) $(HC_BOOT_LD_OPTS) $(HS_OBJS) $(HC_BOOT_LIBS)
229 endif
230
231 # for building a Haskell program, we add FptoolsHcOpts
232 SRC_HC_OPTS += $(FptoolsHcOpts)
233 endif
234
235 #----------------------------------------
236 #       C programs
237
238 ifneq "$(C_PROG)" ""
239 all :: $(C_PROG)
240
241 $(C_PROG) :: $(C_OBJS)
242         $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) $(C_OBJS) $(LIBS)
243 endif
244
245
246 #----------------------------------------
247 #       Building HsLibs libraries.
248 #
249 # Inputs:
250 #   $(PACKAGE) is the name of the library to build
251 #   $(IS_CBITS_LIB) should be "YES" for a "cbits" library
252 #
253 # Outputs:
254 #   $(LIBRARY)          the name of the library.a
255 #   $(GHIC_LIBRARY)     the name of the library.o (for GHCi)
256 #   $(LIBOBJS)          objects to put in library
257 #   $(STUBOBJS)         more objects to put in library
258
259 # $(LIBOBJS) is set to $(HS_OBJS) or $(C_OBJS) depending
260 # on whether or not it's a "cbits" library.  But you can
261 # override this by setting $(LIBOBJS) yourself
262
263 ifneq "$(PACKAGE)" ""
264
265 # add syslib dependencies and current package name
266
267 # HACK!!! The conditional below is needed because we pass $(HC_OPTS)
268 # directly to mkdependC and sometimes the C compiler in ghc/rts. Todo.
269 ifneq "$(PACKAGE)" "rts"
270 SRC_HC_OPTS += -package-name $(PACKAGE)
271 endif
272
273 SRC_HC_OPTS += $(patsubst %, -package %, $(PACKAGE_DEPS))
274
275 ifeq "$(IS_CBITS_LIB)" "YES"
276 _cbits := _cbits
277 STUBOBJS += $(HSC_C_OBJS)
278 # Add _hsc.c files to the cbits library
279 C_SRCS += $(wildcard ../*_hsc.c)
280 # Make .hsc.h include files from the directory above visible
281 # (and the cbits/ library too).
282 SRC_CC_OPTS += -I.. -I.
283 SRC_HSC2HS_OPTS += -I.. -I.
284 endif
285
286 ifneq "$(way)" "i"
287 LIBRARY      = libHS$(PACKAGE)$(_cbits)$(_way).a
288 GHCI_LIBRARY = HS$(PACKAGE)$(_cbits)$(_way).o
289 else
290 LIBRARY      = $(PACKAGE).dll
291 endif
292
293 ifneq "$(IS_CBITS_LIB)" "YES"
294 WAYS=$(GhcLibWays)
295 endif
296
297 ifeq "$(LIBOBJS)" ""
298   ifeq "$(IS_CBITS_LIB)" "YES"
299   LIBOBJS = $(C_OBJS)
300   else
301   LIBOBJS = $(HS_OBJS)
302   endif
303 endif
304
305 ifeq "$(IS_CBITS_LIB)" "YES"
306 override datadir:=$(libdir)/include
307 else
308 SRC_CC_OPTS += -Icbits
309 endif
310
311 endif # PACKAGE
312
313 #----------------------------------------
314 #       Libraries/archives
315 #
316 # Build $(LIBRARY) from $(LIBOBJS)+$(STUBOBJS)
317 #
318 # Inputs:
319 #   $(LIBOBJS)
320 #   $(STUBOBJS)
321 #
322 # Outputs:
323 #   Rule to build $(LIBRARY)
324
325 ifneq "$(LIBRARY)" ""
326 all :: $(LIBRARY)
327
328 ifneq "$(way)" "i"
329 define BUILD_LIB
330 $(RM) $@
331 $(AR) $(AR_OPTS) $@ $(STUBOBJS) $(LIBOBJS)
332 $(RANLIB) $@
333 endef
334 else
335 define BUILD_LIB
336 $(RM) $@
337 al -out:$@ $(STUBOBJS) $(LIBOBJS)
338 endef
339 endif
340
341 #
342 # For Haskell object files, we might have chosen to split
343 # up the object files. Test for whether the library being
344 # built is consisting of Haskell files by (hackily) checking
345 # whether HS_SRCS is empty or not.
346 #
347
348 ifneq "$(HS_SRCS)" ""
349 ifeq "$(SplitObjs)" "YES"
350
351 # can't split objs in way 'u', so we disable it here
352 ifneq "$(way)" "u"
353
354 SRC_HC_OPTS += -split-objs
355
356 # We generate the archive into a temporary file libfoo.a.tmp, then
357 # rename it at the end.  This avoids the problem that ar may sometimes
358 # fail, leaving a partially built archive behind.
359 ifeq "$(ArSupportsInput)" ""
360 define BUILD_LIB
361 $(RM) $@ $@.tmp
362 (echo $(STUBOBJS); $(FIND) $(patsubst %.$(way_)o,%,$(LIBOBJS)) -name '*.$(way_)o') | xargs ar q $@.tmp
363 $(RANLIB) $@.tmp
364 $(MV) $@.tmp $@
365 endef
366 else
367 define BUILD_LIB
368 $(RM) $@ $@.tmp
369 echo $(STUBOBJS) > $@.list
370 $(FIND) $(patsubst %.$(way_)o,%,$(LIBOBJS)) -name '*.$(way_)o' >> $@.list
371 $(AR) $(AR_OPTS) $@.tmp $(ArSupportsInput) $@.list
372 $(RM) $@.list
373 $(RANLIB) $@.tmp
374 $(MV) $@.tmp $@
375 endef
376 endif
377
378 # Extra stuff for compiling Haskell files with $(SplitObjs):
379
380 HC_SPLIT_PRE = \
381     $(RM) $@; if [ ! -d $(basename $@) ]; then mkdir $(basename $@); else \
382     $(FIND) $(basename $@) -name '*.$(way_)o' | xargs $(RM) __rm_food; fi
383 ifeq "$(GhcWithInterpreter)" "YES"
384 HC_SPLIT_POST = $(LD) -r $(LD_X) -o $@ $(basename $@)/*.$(way_)o
385 else
386 HC_SPLIT_POST = touch $@
387 endif # GhcWithInterpreter == YES
388
389 SRC_HC_PRE_OPTS  += $(HC_SPLIT_PRE);
390 SRC_HC_POST_OPTS += $(HC_SPLIT_POST);
391
392 #
393 # If (Haskell) object files are split, cleaning up 
394 # consist of descending into the directories where
395 # the myriads of object files have been put.
396 #
397
398 extraclean ::
399         $(FIND) $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food
400         -rmdir $(patsubst %.$(way_)o,%,$(HS_OBJS)) > /dev/null 2>&1
401
402 endif # $(way) == u
403 endif # $(SplitObjs)
404 endif # $(HS_SRCS)
405
406 #
407 # Remove local symbols from library objects if requested.
408 #
409
410 ifeq "$(StripLibraries)" "YES"
411 ifeq "$(SplitObjs)" "YES"
412 SRC_HC_POST_OPTS += \
413   for i in $(basename $@)/*; do \
414         $(LD) -r $(LD_X) -o $$i.tmp $$i; \
415         $(MV) $$i.tmp $$i; \
416   done
417 else
418 SRC_HC_POST_OPTS += \
419   $(LD) -r $(LD_X) -o $@.tmp $@; $(MV) $@.tmp $@
420 endif # SplitObjs
421 endif # StripLibraries
422
423 $(LIBRARY) :: $(STUBOBJS) $(LIBOBJS)
424         $(BUILD_LIB)
425 endif # LIBRARY = ""
426
427 #--------------------------------------------------------------
428 #       Build dynamically-linkable libraries for GHCi
429 #
430 # Build $(GHCI_LIBRARY) from $(LIBOBJS)+$(STUBOBJS)
431 #
432 # Why?  GHCi can only link .o files (at the moment), not .a files
433 # so we have to build libFoo.o as well as libFoo.a
434 #
435 # Furthermore, GHCi currently never loads 
436 # profiling libraries (or other non-std ways)
437 #
438 # Inputs:
439 #   $(GHCI_LIBRARY)
440 #
441 # Outputs:
442 #   Rule to build $(GHCI_LIBRARY)
443
444
445 ifneq "$(GHCI_LIBRARY)" ""
446 ifeq "$(way)" ""
447 ifeq "$(GhcWithInterpreter)" "YES"
448
449
450 INSTALL_LIBS += $(GHCI_LIBRARY)
451 CLEAN_FILES += $(GHCI_LIBRARY)
452
453 all :: $(GHCI_LIBRARY)
454
455 ifneq "$(DONT_WANT_STD_GHCI_LIB_RULE)" "YES"
456 # If you don't want to build GHCI_LIBRARY the 'standard' way,
457 # set DONT_WANT_STD_GHCI_LIB_RULE to YES. The Prelude and
458 # hslibs/Win32 uses this 'feature'.
459 #
460 $(GHCI_LIBRARY) :: $(LIBOBJS)
461         $(LD) -r $(LD_X) -o $@ $(LIBOBJS) $(STUBOBJS)
462
463 endif # DONT_WANT_STD_GHCI_LIB_RULE
464 endif # GhcWithInterpreter
465 endif # way
466 endif # GHCI_LIBRARY != ""
467
468
469 #----------------------------------------
470 #       Building Win32 DLLs
471 #
472
473 ifeq "$(DLLized)" "YES"
474 SRC_CC_OPTS += -DDLLized
475
476 ifneq "$(PACKAGE)" ""
477
478 SRC_BLD_DLL_OPTS += --export-all --output-def=HS$(PACKAGE)$(_cbits)$(_way).def DllVersionInfo.$(way_)o
479
480 ifneq "$(PACKAGE) $(IS_CBITS_LIB)" "std YES"
481 ifneq "$(PACKAGE)" "rts"
482 SRC_BLD_DLL_OPTS += -lHSstd_cbits_imp -L$(GHC_LIB_DIR)/std/cbits
483 SRC_BLD_DLL_OPTS += -lHSrts_$(way_)imp -L$(GHC_RUNTIME_DIR)
484 ifneq "$(PACKAGE)" "std"
485   ifeq "$(IS_CBITS_LIB)" ""
486   SRC_BLD_DLL_OPTS += -lHSstd_$(way_)imp -L$(GHC_LIB_DIR)/std 
487   endif
488 endif
489 endif
490 endif
491
492 SRC_BLD_DLL_OPTS += -lgmp -L. -L$(GHC_RUNTIME_DIR)/gmp
493 ifeq "$(IS_CBITS_LIB)" ""
494 SRC_BLD_DLL_OPTS += $(patsubst %,-lHS%_$(way_)imp, $(PACKAGE_DEPS))
495 SRC_BLD_DLL_OPTS += $(patsubst %,-L../%, $(PACKAGE_DEPS))
496 endif
497 ifneq "$(HAS_CBITS)" ""
498 SRC_BLD_DLL_OPTS += -lHS$(PACKAGE)_cbits_imp -Lcbits
499 endif
500 SRC_BLD_DLL_OPTS += -lwsock32 -lwinmm
501
502 endif # PACKAGE != ""
503
504 SplitObjs = NO 
505
506 ifneq "$(LIBRARY)" ""
507
508 all :: DllVersionInfo.$(way_)o
509
510 ifeq "$(DLL_NAME)" ""
511 DLL_NAME = $(patsubst %.a,%.dll,$(subst lib,,$(LIBRARY)))
512 endif
513
514 ifneq "$(DLL_NAME)" ""
515 DLL_NAME := $(DLL_PEN)/$(DLL_NAME)
516 endif
517
518 all :: $(DLL_NAME)
519
520 ifeq "$(DLL_IMPLIB_NAME)" ""
521 DLL_IMPLIB_NAME = $(patsubst %.a,%_imp.a,$(LIBRARY))
522 endif
523
524 $(DLL_NAME) :: $(LIBRARY)
525         $(BLD_DLL) --output-lib $(DLL_IMPLIB_NAME) -o $(DLL_NAME) $(LIBRARY) $(BLD_DLL_OPTS)
526 endif # LIBRARY != ""
527
528 endif # DLLized
529
530 #
531 # Version information is baked into a DLL by having the DLL include DllVersionInfo.o.
532 # The version info contains two user tweakables: DLL_VERSION and DLL_VERSION_NAME.
533 # (both are given sensible defaults though.)
534 #
535 # Note: this will not work as expected with Cygwin B20.1; you need a more recent
536 #       version of binutils (to pick up windres bugfixes.)
537
538 ifndef DLL_VERSION
539 DLL_VERSION=$(ProjectVersion)
540 endif
541
542 ifndef DLL_VERSION_NAME
543 DLL_VERSION_NAME="http://www.haskell.org/ghc"
544 endif
545
546 ifndef DLL_DESCRIPTION
547 DLL_DESCRIPTION="A GHC-compiled DLL"
548 endif
549
550 ifndef EXE_VERSION
551 EXE_VERSION=$(ProjectVersion)
552 endif
553
554 ifndef EXE_VERSION_NAME
555 EXE_VERSION_NAME="http://www.haskell.org/ghc"
556 endif
557
558 ifndef EXE_DESCRIPTION
559 EXE_DESCRIPTION="A GHC-compiled binary"
560 endif
561
562 #
563 # Little bit of lo-fi mangling to get at the right set of settings depending
564 # on whether we're generating the VERSIONINFO for a DLL or EXE
565
566 DLL_OR_EXE=$(subst VersionInfo.$(way_)rc,,$@)
567 VERSION_FT=$(subst Dll, 0x2L, $(subst Exe, 0x1L, $(DLL_OR_EXE)))
568 VERSION_RES_NAME=$(subst Exe,$(EXE_VERSION_NAME), $(subst Dll, $(DLL_VERSION_NAME),$(DLL_OR_EXE)))
569 VERSION_RES=$(subst Exe,$(EXE_VERSION), $(subst Dll, $(DLL_VERSION),$(DLL_OR_EXE)))
570 VERSION_DESC=$(subst Exe,$(EXE_DESCRIPTION), $(subst Dll, $(DLL_DESCRIPTION),$(DLL_OR_EXE)))
571
572 DllVersionInfo.$(way_)rc ExeVersionInfo.$(way_)rc:
573         $(RM) DllVersionInfo.$(way_)rc
574         echo "1 VERSIONINFO"                > $@
575         echo "FILEVERSION 1,0,0,1"         >> $@
576         echo "PRODUCTVERSION 1,0,0,1"      >> $@
577         echo "FILEFLAGSMASK 0x3fL"         >> $@
578         echo "FILEOS 0x4L"                 >> $@
579         echo "FILETYPE $(VERSION_FT)"      >> $@
580         echo "FILESUBTYPE 0x0L"            >> $@
581         echo "BEGIN"                       >> $@
582         echo " BLOCK \"StringFileInfo\""   >> $@
583         echo " BEGIN"                      >> $@
584         echo "  BLOCK \"040904B0\""        >> $@
585         echo "  BEGIN"                     >> $@
586         echo "   VALUE \"CompanyName\", \"$(VERSION_RES_NAME)\\0\"" >> $@
587         echo "   VALUE \"FileVersion\", \"$(VERSION_RES)\\0\"" >> $@
588         echo "   VALUE \"ProductVersion\", \"$(VERSION_RES)\\0\"" >> $@
589         echo "   VALUE \"FileDescription\", \"$(VERSION_DESC)\\0\"" >> $@
590         echo "  END" >> $@
591         echo " END" >> $@
592         echo " BLOCK \"VarFileInfo\""  >> $@
593         echo " BEGIN" >> $@
594         echo "  VALUE \"Translation\", 0x0409, 1200" >> $@
595         echo " END" >> $@
596         echo "END" >> $@
597
598 #----------------------------------------
599 #       Script programs
600
601 ifneq "$(SCRIPT_PROG)" ""
602
603 # To produce a fully functional script, you may
604 # have to add some configuration variables at the top of 
605 # the script, i.e., the compiler driver needs to know
606 # the path to various utils in the build tree for instance.
607 #
608 # To have the build rule for the script automatically do this
609 # for you, set the variable SCRIPT_SUBST_VARS to the list of
610 # variables you need to put in.
611
612 #
613 # SCRIPT_SUBST creates a string of echo commands that
614 # will when evaluated append the (perl)variable name and its value 
615 # to the target it is used for, i.e.,
616 #
617 #    A=foo
618 #    B=bar
619 #    SCRIPT_SUBST_VARS = A B
620 #    SCRIPT_SUBST=echo "$""A=\"foo\";" >> $@; echo "$""B=\"bar\";" >> $@
621 #
622 #    so if you have a rule like the following
623 #    
624 #     foo:
625 #         @(RM) $@
626 #         @(TOUCH) $@
627 #         @eval $(SCRIPT_SUBST)
628 #
629 #    `make foo' would create a file `foo' containing the following
630 #
631 #    % cat foo
632 #    $A=foo;
633 #    $B=bar;
634 #    %
635 #
636 # ToDo: make this work for shell scripts (drop the initial $).
637 #
638 ifeq "$(INTERP)" "$(SHELL)"
639 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$(val)=\\\"$($(val))\\\";\" >> $@;")
640 else
641 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$$\"\"$(val)=\\\"$($(val))\\\";\" >> $@;")
642 endif
643
644 all :: $(SCRIPT_PROG)
645
646 $(SCRIPT_PROG) : $(SCRIPT_OBJS)
647         $(RM) $@
648         @echo Creating $@...
649 ifeq "$(INTERP)" "perl"
650         echo "#! "$(PERL) > $@
651 else
652 ifneq "$(INTERP)" ""
653         @echo "#!"$(INTERP) > $@
654 else
655         @touch $@
656 endif
657 endif
658 ifneq "$(SCRIPT_PREFIX_FILES)" ""
659         @cat $(SCRIPT_PREFIX_FILES) >> $@
660 endif
661 ifneq "$(SCRIPT_SUBST)" ""
662         @eval $(SCRIPT_SUBST) 
663 endif
664         @cat $(SCRIPT_OBJS) >> $@
665         @chmod a+x $@
666         @echo Done.
667 endif
668
669 # ---------------------------------------------------------------------------
670 # Symbolic links
671
672 # links to programs: we sometimes install a program as
673 # <name>-<version> with a link from <name> to the real program.
674
675 ifneq "$(LINK)" ""
676
677 all :: $(LINK)
678
679 CLEAN_FILES += $(LINK)
680
681 ifeq "$(LINK_TARGET)" ""
682 ifneq "$(SCRIPT_PROG)" ""
683 LINK_TARGET = $(SCRIPT_PROG)
684 else
685 ifneq "$(HS_PROG)" ""
686 LINK_TARGET = $(HS_PROG)
687 else
688 ifneq "$(C_PROG)" ""
689 LINK_TARGET = $(C_PROG)
690 else
691 LINK_TARGET = dunno
692 endif
693 endif
694 endif
695 endif
696
697 #
698 # Don't want to overwrite $(LINK)s that aren't symbolic
699 # links. Testing for symbolic links is problematic to do in
700 # a portable fashion using a /bin/sh test, so we simply rely
701 # on perl.
702 #
703 $(LINK) : $(LINK_TARGET)
704         @if ( $(PERL) -e '$$fn="$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
705            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK)"; \
706            $(RM) $(LINK); \
707            $(LN_S) $(LINK_TARGET) $(LINK); \
708          else \
709            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK) failed: \`$(LINK)' already exists"; \
710            echo "Perhaps remove \`$(LINK)' manually?"; \
711            exit 1; \
712          fi;
713
714
715 #
716 # install links to script drivers.
717 #
718 install ::
719         @$(INSTALL_DIR) $(bindir)
720         @if ( $(PERL) -e '$$fn="$(bindir)/$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
721            echo "Creating a symbol link from $(LINK_TARGET) to $(LINK) in $(bindir)"; \
722            $(RM) $(bindir)/$(LINK); \
723            $(LN_S) $(LINK_TARGET) $(bindir)/$(LINK); \
724          else \
725            echo "Creating a symbol link from $(LINK_TARGET) to $(LINK) in $(bindir) failed: \`$(bindir)/$(LINK)' already exists"; \
726            echo "Perhaps remove \`$(bindir)/$(LINK)' manually?"; \
727            exit 1; \
728          fi;
729
730 endif # LINK 
731
732
733 ###########################################
734 #
735 #       Targets: install install-strip uninstall
736 #
737 ###########################################
738
739 # For each of these variables that is defined, you
740 # get one install rule
741 #
742 #       INSTALL_PROGS        executable programs in $(bindir)
743 #       INSTALL_SCRIPTS      executable scripts in $(bindir)
744 #       INSTALL_LIBS         platform-dependent libraries in $(libdir) (ranlib'ed)
745 #       INSTALL_LIB_SCRIPTS  platform-dependent scripts   in $(libdir)
746 #       INSTALL_LIBEXECS     platform-dependent execs in $(libdir)
747 #       INSTALL_DATAS        platform-independent files in $(datadir)
748 #
749 # If the installation directory variable is undefined, the install rule simply
750 # emits a suitable error message.
751 #
752 # Remember, too, that the installation directory variables ($(bindir) and
753 # friends can be overridden from their original settings in mk/config.mk.in
754 # || mk/build.mk
755 #
756 .PHONY: install install-docs installdirs install-strip install-dirs uninstall install-docs show-install
757
758 show-install :
759         @echo "bindir = $(bindir)"
760         @echo "libdir = $(libdir)"
761         @echo "libexecdir = $(libexecdir)  # by default, same as libdir"
762         @echo "datadir = $(datadir)  # unused for ghc project"
763
764 #
765 # Sometimes useful to separate out the creation of install directories 
766 # from the installation itself.
767 #
768 install-dirs ::
769         @$(INSTALL_DIR) $(bindir)
770         @$(INSTALL_DIR) $(libdir)
771         @$(INSTALL_DIR) $(libexecdir)
772         @$(INSTALL_DIR) $(datadir)
773
774 # Better do this first...
775 # but we won't for the moment, do it on-demand from
776 # within the various install targets instead.
777 #install:: install-dirs
778
779 # Install libraries automatically
780 ifneq "$(LIBRARY)" ""
781 INSTALL_LIBS  += $(LIBRARY)
782 ifeq "$(DLLized)" "YES"
783 INSTALL_PROGS += $(DLL_NAME)
784 INSTALL_LIBS += $(patsubst %.a,%_imp.a, $(LIBRARY))
785 endif
786 INSTALL_DATAS += $(HS_IFACES)
787 endif
788
789 ifneq "$(INSTALL_PROGS)" ""
790
791 #
792 # Here's an interesting one - when using the win32 version
793 # of install (provided via the cygwin toolkit), we have to
794 # supply the .exe suffix, *if* there's no other suffix.
795 #
796 # The rule below does this by ferreting out the suffix of each
797 # entry in the INSTALL_PROGS list. If there's no suffix, use
798 # $(exeext).
799
800 INSTALL_PROGS := $(foreach p, $(INSTALL_PROGS), $(addsuffix $(if $(suffix $(p)),,$(exeext)), $(basename $(p))))
801
802 install:: $(INSTALL_PROGS)
803         @$(INSTALL_DIR) $(bindir)
804         @for i in $(INSTALL_PROGS); do \
805                     echo $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir); \
806                     $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir) ;  \
807         done
808 endif
809
810 #
811 # Just like INSTALL_PROGS, but prefix with install sites bin/lib/data and
812 # install without stripping.
813 #
814 ifneq "$(INSTALL_SCRIPTS)" ""
815 install:: $(INSTALL_SCRIPTS)
816         @$(INSTALL_DIR) $(bindir)
817         for i in $(INSTALL_SCRIPTS); do \
818                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(bindir); \
819         done
820 endif
821
822 ifneq "$(INSTALL_LIB_SCRIPTS)" ""
823 install:: $(INSTALL_LIB_SCRIPTS)
824         @$(INSTALL_DIR) $(libdir)
825         for i in $(INSTALL_LIB_SCRIPTS); do \
826                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libdir); \
827         done
828 endif
829
830 ifneq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
831 install:: $(INSTALL_LIBEXEC_SCRIPTS)
832         @$(INSTALL_DIR) $(libexecdir)
833         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
834                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libexecdir); \
835         done
836 endif
837
838 ifneq "$(INSTALL_LIBS)" ""
839 install:: $(INSTALL_LIBS)
840         @$(INSTALL_DIR) $(libdir)
841         for i in $(INSTALL_LIBS); do \
842                 case $$i in \
843                   *.a) \
844                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
845                     $(RANLIB) $(libdir)/`basename $$i` ;; \
846                   *.dll) \
847                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i $(libdir) ;; \
848                   *.so) \
849                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i $(libdir) ;; \
850                   *) \
851                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
852                 esac; \
853         done
854 endif
855
856 ifneq "$(INSTALL_LIBEXECS)" ""
857 #
858 # See above comment next to defn of INSTALL_PROGS for what
859 # the purpose of this one-liner is.
860
861 INSTALL_LIBEXECS := $(foreach p, $(INSTALL_LIBEXECS), $(addsuffix $(subst _,,$(subst __,$(exeext),_$(suffix $(p))_)), $(basename $(p))))
862
863 install:: $(INSTALL_LIBEXECS)
864         @$(INSTALL_DIR) $(libexecdir)
865         -for i in $(INSTALL_LIBEXECS); do \
866                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(libexecdir); \
867         done
868 endif
869
870 ifneq "$(INSTALL_DATAS)" ""
871 install:: $(INSTALL_DATAS)
872         @$(INSTALL_DIR) $(datadir)
873         for i in $(INSTALL_DATAS); do \
874                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
875         done
876 endif
877
878 ifneq "$(INSTALL_INCLUDES)" ""
879 install:: $(INSTALL_INCLUDES)
880         @$(INSTALL_DIR) $(includedir)
881         for i in $(INSTALL_INCLUDES); do \
882                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(includedir); \
883         done
884 endif
885
886 ifneq "$(INSTALL_DOCS)" ""
887 install-docs:: $(INSTALL_DOCS)
888         @$(INSTALL_DIR) $(datadir)      
889         for i in $(INSTALL_DOCS); do \
890                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
891         done
892 endif
893
894 ifneq "$(INSTALL_SGML_DOC)" ""
895 ifneq "$(SGMLDocWays)" ""
896 install-docs:: $(foreach i,$(SGMLDocWays),$(INSTALL_SGML_DOC).$i)
897         @$(INSTALL_DIR) $(datadir)      
898         for i in $(SGMLDocWays); do \
899                 if [ $$i = "html" ]; then \
900                         $(CP) -r $(INSTALL_SGML_DOC) $(datadir); \
901                 else \
902                         $(INSTALL_DATA) $(INSTALL_OPTS) $(INSTALL_SGML_DOC).$$i $(datadir); \
903                 fi \
904         done
905 endif
906 endif
907
908 #
909 # Use with care..
910 #
911 uninstall:: 
912         @for i in $(INSTALL_PROGS) "" ; do                      \
913           if test "$$i"; then                                   \
914                 echo rm -f $(bindir)/`basename $$i`;            \
915                 rm -f $(bindir)/`basename $$i`;                 \
916           fi;                                                   \
917         done
918         @for i in $(INSTALL_LIBS) ""; do                        \
919           if test "$$i"; then                                   \
920                 echo rm -f $(libdir)/`basename $$i`;            \
921                 rm -f $(libdir)/`basename $$i`;                 \
922           fi;                                                   \
923         done
924         @for i in $(INSTALL_LIBEXECS) ""; do                    \
925           if test "$$i"; then                                   \
926                 echo rm -f $(libexecdir)/`basename $$i`;        \
927                 rm -f $(libexecdir)/`basename $$i`;             \
928           fi;                                                   \
929         done
930         @for i in $(INSTALL_DATAS) ""; do                       \
931           if test "$$i"; then                                   \
932                 echo rm -f $(datadir)/`basename $$i`;           \
933                 rm -f $(datadir)/`basename $$i`;                \
934           fi;                                                   \
935         done
936
937 #
938 # install-strip is from the GNU Makefile standard.
939 #
940 ifneq "$(way)" ""
941 install-strip::
942         @$(MAKE) EXTRA_INSTALL_OPTS='-s' install                                        
943 endif
944
945 ##############################################################################
946 #
947 #       Targets: check tags show
948 #
949 ##############################################################################
950
951 #------------------------------------------------------------
952 #                       Check
953
954 .PHONY: check
955
956 check:: $(TESTS)
957         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
958           if (test -f "$$i"); then              \
959             echo Running: `basename $$i` ;      \
960             cd test; `basename $$i` ;           \
961           fi;                                   \
962         done;
963
964 #------------------------------------------------------------
965 #                       Tags
966
967 .PHONY: TAGS tags
968
969 tags TAGS:: $(TAGS_HS_SRCS) $(TAGS_C_SRCS)
970         @$(RM) TAGS
971         @touch TAGS
972 ifneq "$(TAGS_HS_SRCS)" ""
973         $(HSTAGS) $(HSTAGS_OPTS) -- $(TAGS_HS_SRCS)
974 endif
975 ifneq "$(TAGS_C_SRCS)" ""
976         etags -a $(TAGS_C_SRCS)
977 endif
978         @( 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?
979
980 #------------------------------------------------------------
981 #                       Makefile debugging
982 # to see the effective value used for a Makefile variable, do
983 #  make show VALUE=MY_VALUE
984 #
985
986 show:
987         @echo '$(VALUE)="$($(VALUE))"'
988
989 ################################################################################
990 #
991 #                       SGML Documentation
992 #
993 ################################################################################
994
995 .PHONY: dvi ps html pdf rtf
996
997 ifneq "$(SGML_DOC)" ""
998
999 all :: $(SGMLDocWays)
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 "$(SGML_SRCS)" ""
1005 SGML_SRCS = $(wildcard *.sgml)
1006 endif
1007
1008 SGML_TEX  = $(addsuffix .tex,$(SGML_DOC))
1009 SGML_DVI  = $(addsuffix .dvi,$(SGML_DOC))
1010 SGML_PS   = $(addsuffix .ps,$(SGML_DOC))
1011 SGML_PDF  = $(addsuffix .pdf,$(SGML_DOC))
1012 SGML_RTF  = $(addsuffix .rtf,$(SGML_DOC))
1013 SGML_HTML = $(addsuffix .html,$(SGML_DOC))
1014 # HTML output goes in a subdirectory on its own.
1015 SGML_TEXT = $(addsuffix .txt,$(SGML_DOC))
1016
1017 $(SGML_DVI) $(SGML_PS) $(SGML_HTML) $(SGML_TEXT) $(SGML_PDF) :: $(SGML_SRCS)
1018
1019 dvi  :: $(SGML_DVI)
1020 ps   :: $(SGML_PS)
1021 pdf  :: $(SGML_PDF)
1022 rtf  :: $(SGML_RTF)
1023 html :: $(SGML_HTML)
1024 txt  :: $(SGML_TEXT)
1025
1026 CLEAN_FILES += $(SGML_TEXT) $(SGML_TEX) $(SGML_PS) $(SGML_DVI) $(SGML_PDF) $(SGML_RTF) $(SGML_HTML) $(SGML_DOC)-*.html
1027 # can't use $(SGML_SRCS) here, it was maybe used elsewhere
1028
1029 extraclean ::
1030         $(RM) -rf DBTOHTML_OUTPUT_*
1031         $(RM) -rf *.junk/
1032         $(RM) -rf $(SGML_DOC)
1033 endif
1034
1035 ##############################################################################
1036 #
1037 #       Targets: clean
1038 #
1039 ##############################################################################
1040
1041 # we have to be careful about recursion here; since all the clean
1042 # targets are recursive, we don't want to make eg. distclean depend on
1043 # clean because that would result in far too many recursive calls.
1044
1045 .PHONY: mostlyclean clean distclean maintainer-clean
1046
1047 mostlyclean::
1048         rm -f $(MOSTLY_CLEAN_FILES)
1049
1050 # extraclean is used for adding actions to the clean target.
1051 extraclean::
1052
1053 clean:: extraclean
1054         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES)
1055
1056 distclean:: extraclean
1057         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES)
1058
1059 maintainer-clean:: extraclean
1060         @echo 'This command is intended for maintainers to use; it'
1061         @echo 'deletes files that may need special tools to rebuild.'
1062         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES) $(MAINTAINER_CLEAN_FILES)
1063
1064 ################################################################################
1065 #
1066 #                       Way management
1067 #
1068 ################################################################################
1069
1070 # Here is the ingenious jiggery pokery that allows you to build multiple versions
1071 # of a program in a single build tree.
1072 #
1073 # The ways setup requires the following variables to be set:
1074 #
1075 # Expects:      $(WAYS)                 the possible "way" strings to one of 
1076 #                                       which $(way) will be set
1077
1078
1079 # So how does $(way) ever get set to anything?  Answer, we recursively
1080 # invoke make, setting $(way) on the command line.
1081 # When do we do this recursion?  Answer: whenever the programmer
1082 # asks make to make a target that involves a way suffix.
1083 # We must remember *not* to recurse again; but that's easy: we
1084 # just see if $(way) is set:
1085
1086 ifeq "$(way)" ""
1087
1088 # If $(WAYS) = p mc, then WAY_TARGETS expands to
1089 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
1090 # and OTHER_WAY_TARGETS to
1091 #       %_p.a %_p %_mc.a %_mc
1092 # where the suffixes are from $(SUFFIXES)
1093 #
1094 # We have to treat libraries and "other" targets differently, 
1095 # because their names are of the form
1096 #       libHS_p.a and Foo_p
1097 # whereas everything else has names of the form
1098 #       Foo.p_o
1099
1100 FPTOOLS_SUFFIXES := o hi hc
1101
1102 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
1103 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
1104
1105 # $@ will be something like Foo.p_o
1106 # $(suffix $@)     returns .p_o
1107 # $(subst .,.p_o)  returns p_o
1108 # $(subst _,.,p_o) returns p.o   (clever)
1109 # $(basename p.o)  returns p
1110
1111 $(WAY_TARGETS) :
1112         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
1113
1114 # $(@F) will be something like libHS_p.a, or Foo_p
1115 # $(basename $(@F)) will be libHS_p, or Foo_p
1116 # The sed script extracts the "p" part.
1117
1118 $(LIB_WAY_TARGETS) :
1119         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
1120
1121 endif   # if way
1122
1123 # -------------------------------------------------------------------------
1124 # Object and interface files have suffixes tagged with their ways
1125
1126 ifneq "$(way)" ""
1127 SRC_HC_OPTS += -hisuf $(way_)hi -hcsuf $(way_)hc -osuf $(way_)o
1128 endif
1129
1130 # -------------------------------------------------------------------------
1131 # Rules to invoke the current target recursively for each way
1132
1133 ifneq "$(WAYS)" ""
1134 ifeq "$(way)" ""
1135
1136 # NB: the targets exclude 
1137 #       boot runtests
1138 # since these are way-independent
1139 all docs TAGS clean distclean mostlyclean maintainer-clean install ::
1140         @echo "------------------------------------------------------------------------"
1141         @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
1142         @echo "PWD = $(shell pwd)"
1143         @echo "------------------------------------------------------------------------"
1144 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1145         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1146         for i in $(WAYS) ; do \
1147           echo "------------------------------------------------------------------------"; \
1148           echo "==fptools== $(MAKE) way=$$i $@;"; \
1149           echo "PWD = $(shell pwd)"; \
1150           echo "------------------------------------------------------------------------"; \
1151           $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
1152           if [ $$? -eq 0 ] ; then true; else exit $$x_on_err; fi; \
1153         done
1154         @echo "------------------------------------------------------------------------"
1155         @echo "===fptools== Finished recursively making \`$@' for ways: $(WAYS) ..."
1156         @echo "PWD = $(shell pwd)"
1157         @echo "------------------------------------------------------------------------"
1158
1159 endif
1160 endif
1161
1162
1163 ##################################################################
1164 #
1165 #               Recursive stuff
1166 #
1167 # This was once at the top of the file, allegedly because it was
1168 # needed for some targets, e.g. when building DLLs in hslibs.  But
1169 # since this reason is a little short on information, and I'm having
1170 # trouble with subdirectory builds happening before the current
1171 # directory when building hslibs (bad interaction with including
1172 # _hsc.o files in the cbits lib) so I'm moving the recursive makes to
1173 # the end --SDM 12/12/2001
1174 #
1175 ##################################################################
1176
1177 # Here are the diabolically clever rules that
1178
1179 # (a) for each "recursive target" <t>
1180 #     propagates "make <t>" to directories in SUBDIRS
1181 #
1182 # (b) when SUBDIRS is empty,
1183 #     for each "multi-way-target" <t>
1184 #     calls "make way=w <t>" for each w in $(WAYS)
1185 #
1186 #     This has the effect of making the standard target
1187 #     in each of the specified ways (as well as in the normal way
1188
1189 # Controlling variables
1190 #       WAYS    = extra (beyond the normal way) ways to build things in
1191 #       SUBDIRS = subdirectories to recurse into
1192
1193 # No ways, so iterate over the SUBDIRS
1194
1195 # note about recursively invoking make: we'd like make to drop all the
1196 # way back to the top level if it fails in any of the
1197 # sub(sub-...)directories.  This is done by setting the -e flag to the
1198 # shell during the loop, which causes an immediate failure if any of
1199 # the shell commands fail.
1200
1201 # One exception: if the user gave the -i or -k flag to make in the
1202 # first place, we'd like to reverse this behaviour.  So we check for
1203 # these flags, and set the -e flag appropriately.  NOTE: watch out for
1204 # the --no-print-directory flag which is passed to recursive
1205 # invocations of make.
1206 #
1207 ifneq "$(SUBDIRS)" ""
1208
1209 # we override the 'boot', 'all' and 'install' targets in the top
1210 # level Makefile. Some of the sub-projects also set 'boot' to empty.
1211
1212 ifeq "$(NO_ALL_TARGET)" "YES"
1213 ALL_TARGET     =
1214 else
1215 ALL_TARGET     = all
1216 endif
1217
1218 ifeq "$(NO_BOOT_TARGET)" "YES"
1219 BOOT_TARGET    =
1220 else
1221 BOOT_TARGET    = boot
1222 endif
1223
1224 ifeq "$(NO_INSTALL_TARGET)" "YES"
1225 INSTALL_TARGET =
1226 INSTALL_DOCS_TARGET =
1227 else
1228 INSTALL_TARGET = install
1229 INSTALL_DOCS_TARGET = install-docs
1230 endif
1231
1232 $(ALL_TARGET) docs runtests $(BOOT_TARGET) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL_TARGET) $(INSTALL_DOCS_TARGET) html ps dvi txt::
1233         @echo "------------------------------------------------------------------------"
1234         @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
1235         @echo "PWD = $(shell pwd)"
1236         @echo "------------------------------------------------------------------------"
1237 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1238         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1239         for i in $(SUBDIRS); do \
1240           echo "------------------------------------------------------------------------"; \
1241           echo "==fptools== $(MAKE) $@ $(MFLAGS);"; \
1242           echo " in $(shell pwd)/$$i"; \
1243           echo "------------------------------------------------------------------------"; \
1244           $(MAKE) --no-print-directory -C $$i $(MFLAGS) $@; \
1245           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
1246         done
1247         @echo "------------------------------------------------------------------------"
1248         @echo "===fptools== Finished making \`$@' in $(SUBDIRS) ..."
1249         @echo "PWD = $(shell pwd)"
1250         @echo "------------------------------------------------------------------------"
1251
1252 endif
1253
1254 #
1255 # Selectively building subdirectories.
1256 #
1257 #
1258 ifneq "$(SUBDIRS)" ""
1259 $(SUBDIRS) ::
1260           $(MAKE) -C $@ $(MFLAGS)
1261 endif