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