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