1 #################################################################################
5 # Standard targets for fptools
7 #################################################################################
10 # This file contain three groups of target rules:
16 # 2. GNU standard targets
18 # install* uninstall installcheck installdirs
19 # clean* distclean* mostlyclean* maintainer-clean*
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
29 # The recursive targets are marked with a * above
37 ##################################################################
38 # FPtools standard targets
42 # The depend target has to cope with a set of files that may have
43 # different ways of computing their dependencies, i.e., a Haskell
44 # module's dependencies are computed differently from C files.
46 # Note that we don't compute dependencies automatically, i.e., have the
47 # .depend file be a target that is dependent on the Haskell+C sources,
48 # and then have the `depend' target depend on `.depend'. The reason for
49 # this is that when GNU make is processing the `include .depend' statement
50 # it records .depend as being a Makefile. Before doing any other processing,
51 # `make' will try to check to see if the Makefiles are up-to-date. And,
52 # surprisingly enough, .depend has a rule for it, so if any of the source
53 # files change, it will be invoked, *regardless* of what target you're making.
55 # So, for now, the dependencies has to be re-computed manually via `make depend'
56 # whenever a module changes its set of imports. Doing what was outlined above
57 # is only a small optimisation anyway, it would avoid the recomputation of
58 # dependencies if the .depend file was newer than any of the source modules.
62 # Compiler produced files that are targets of the source's imports.
63 MKDEPENDHS_OBJ_SUFFICES=o
65 depend :: $(MKDEPENDHS_SRCS) $(MKDEPENDC_SRCS)
68 ifneq "$(DOC_SRCS)" ""
69 $(MKDEPENDLIT) -o .depend $(MKDEPENDLIT_OPTS) $(filter %.lit,$(DOC_SRCS))
71 ifneq "$(MKDEPENDC_SRCS)" ""
72 $(MKDEPENDC) -f .depend $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(MKDEPENDC_SRCS)
74 ifneq "$(MKDEPENDHS_SRCS)" ""
75 $(MKDEPENDHS) -M -optdep-f -optdep.depend $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(foreach obj,$(MKDEPENDHS_OBJ_SUFFICES),-optdep-o -optdep$(obj)) $(MKDEPENDHS_OPTS) $(patsubst -odir,,$(HC_OPTS)) $(MKDEPENDHS_SRCS)
78 # the above patsubst is a hack to remove the '-odir $*' from HC_OPTS
79 # which is present when we're splitting objects. The $* maps to
80 # nothing, since this isn't a pattern rule, so we have to get rid of
81 # the -odir too to avoid problems.
83 ##################################################################
86 # The boot target, at a minimum generates dependency information
92 ##################################################################
93 # GNU Standard targets
95 # Every Makefile should define the following targets
98 # Compile the entire program. This should be the default target.
99 # This target need not rebuild any documentation files; Info files
100 # should normally be included in the distribution, and DVI files
101 # should be made only when explicitly asked for.
104 # Compile the program and copy the executables, libraries, and so on
105 # to the file names where they should reside for actual use. If
106 # there is a simple test to verify that a program is properly
107 # installed, this target should run that test.
109 # The commands should create all the directories in which files are
110 # to be installed, if they don't already exist. This includes the
111 # directories specified as the values of the variables prefix and
112 # exec_prefix , as well as all subdirectories that are needed. One
113 # way to do this is by means of an installdirs target as described
116 # Use `-' before any command for installing a man page, so that make
117 # will ignore any errors. This is in case there are systems that
118 # don't have the Unix man page documentation system installed.
120 # The way to install Info files is to copy them into `$(infodir)'
121 # with $(INSTALL_DATA) (see Command Variables), and then run the
122 # install-info program if it is present. install-info is a script
123 # that edits the Info `dir' file to add or update the menu entry for
124 # the given Info file; it will be part of the Texinfo package. Here
125 # is a sample rule to install an Info file:
127 # $(infodir)/foo.info: foo.info # There may be a newer info
128 # file in . than in srcdir.
129 # -if test -f foo.info; then d=.; \
130 # else d=$(srcdir); fi; \ $(INSTALL_DATA)
131 # $$d/foo.info $@; \ # Run install-info only if it
132 # exists. # Use `if' instead of just prepending `-' to the
133 # # line so we notice real errors from install-info. # We
134 # use `$(SHELL) -c' because some shells do not # fail
135 # gracefully when there is an unknown command.
136 # if $(SHELL) -c 'install-info --version' \
137 # >/dev/null 2>&1; then \ install-info
138 # --infodir=$(infodir) $$d/foo.info; \ else true;
142 # Delete all the installed files that the `install' target would
143 # create (but not the noninstalled files such as `make all' would
148 # Delete all files from the current directory that are normally
149 # created by building the program. Don't delete the files that
150 # record the configuration. Also preserve files that could be made
151 # by building, but normally aren't because the distribution comes
154 # Delete `.dvi' files here if they are not part of the
158 # Delete all files from the current directory that are created by
159 # configuring or building the program. If you have unpacked the
160 # source and built the program without creating any other files,
161 # `make distclean' should leave only the files that were in the
165 # Like `clean', but may refrain from deleting a few files that
166 # people normally don't want to recompile. For example, the
167 # `mostlyclean' target for GCC does not delete `libgcc.a', because
168 # recompiling it is rarely necessary and takes a lot of time.
171 # Delete everything from the current directory that can be
172 # reconstructed with this Makefile. This typically includes
173 # everything deleted by distclean , plus more: C source files
174 # produced by Bison, tags tables, Info files, and so on.
176 # One exception, however: `make maintainer-clean' should not delete
177 # `configure' even if `configure' can be remade using a rule in the
178 # Makefile. More generally, `make maintainer-clean' should not delete
179 # anything that needs to exist in order to run `configure' and then
180 # begin to build the program.
183 # Update a tags table for this program.
186 # Generate any Info files needed. The best way to write the rules is
191 # foo.info: foo.texi chap1.texi chap2.texi
192 # $(MAKEINFO) $(srcdir)/foo.texi
194 # You must define the variable MAKEINFO in the Makefile. It should
195 # run the makeinfo program, which is part of the Texinfo
199 # Generate DVI files for all TeXinfo documentation. For example:
203 # foo.dvi: foo.texi chap1.texi chap2.texi
204 # $(TEXI2DVI) $(srcdir)/foo.texi
206 # You must define the variable TEXI2DVI in the Makefile. It should
207 # run the program texi2dvi , which is part of the Texinfo
208 # distribution. Alternatively, write just the dependencies, and
209 # allow GNU Make to provide the command.
211 # ps is a FPtools addition for Postscript files
213 # `dist' `binary-dist'
214 # Create a distribution tar file for this program. The tar file
215 # should be set up so that the file names in the tar file start with
216 # a subdirectory name which is the name of the package it is a
217 # distribution for. This name can include the version number.
219 # For example, the distribution tar file of GCC version 1.40 unpacks
220 # into a subdirectory named `gcc-1.40'.
222 # The easiest way to do this is to create a subdirectory
223 # appropriately named, use ln or cp to install the proper files in
224 # it, and then tar that subdirectory.
226 # The dist target should explicitly depend on all non-source files
227 # that are in the distribution, to make sure they are up to date in
228 # the distribution. See Making Releases.
230 # binary-dist is an FPtools addition for binary distributions
233 # Perform self-tests (if any). The user must build the program
234 # before running the tests, but need not install the program; you
235 # should write the self-tests so that they work when the program is
236 # built but not installed.
238 # The following targets are suggested as conventional names, for programs
239 # in which they are useful.
242 # Perform installation tests (if any). The user must build and
243 # install the program before running the tests. You should not
244 # assume that `$(bindir)' is in the search path.
247 # It's useful to add a target named `installdirs' to create the
248 # directories where files are installed, and their parent
249 # directories. There is a script called `mkinstalldirs' which is
250 # convenient for this; find it in the Texinfo package.
251 # (FPTOOLS: we use a close relative of the suggested script, situated
252 # in glafp-utils/mkdirhier -- SOF)
257 ###########################################
261 ###########################################
263 # For each of these variables that is defined
264 # we generate one "all" rule and one rule for the variable itself:
266 # HS_PROG Haskell program
269 # SCRIPT_PROG Script (e.g. Perl script)
271 # For details of exactly what rule is generated, see the
272 # relevant section below
276 #----------------------------------------
279 ifneq "$(HS_PROG)" ""
282 $(HS_PROG) :: $(HS_OBJS)
283 $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(HS_OBJS) $(LIBS)
286 #----------------------------------------
292 $(C_PROG) :: $(C_OBJS)
293 $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) $(C_OBJS) $(LIBS)
297 #----------------------------------------
300 ifneq "$(LIBRARY)" ""
306 $(AR) $(AR_OPTS) $@ $(LIBOBJS)
311 # For Haskell object files, we might have chosen to split
312 # up the object files. Test for whether the library being
313 # built is consisting of Haskell files by (hackily) checking
314 # whether HS_SRCS is empty or not.
317 ifneq "$(HS_SRCS)" ""
318 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
321 TMPDIR=$(TMPDIR); export TMPDIR; find $(patsubst %.$(way_)o,%,$(LIBOBJS)) -name '*.$(way_)o' -print | xargs ar q $@
328 # Remove local symbols from library objects if requested.
331 ifeq "$(StripLibraries)" "YES"
332 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
333 SRC_HC_POST_OPTS += \
334 for i in $(basename $@)/*; do \
335 ld -r -x -o $$i.tmp $$i; \
339 SRC_HC_POST_OPTS += \
340 ld -r -x -o $@.tmp $@; $(MV) $@.tmp $@
344 $(LIBRARY) :: $(LIBOBJS)
348 #----------------------------------------
351 ifneq "$(SCRIPT_PROG)" ""
353 # To produce a fully functional script, you may
354 # have to add some configuration variables at the top of
355 # the script, i.e., the compiler driver needs to know
356 # the path to various utils in the build tree for instance.
358 # To have the build rule for the script automatically do this
359 # for you, set the variable SCRIPT_SUBST_VARS to the list of
360 # variables you need to put in.
363 # SCRIPT_SUBST creates a string of echo commands that
364 # will when evaluated append the (perl)variable name and its value
365 # to the target it is used for, i.e.,
369 # SCRIPT_SUBST_VARS = A B
370 # SCRIPT_SUBST=echo "$""A=\"foo\";" >> $@; echo "$""B=\"bar\";" >> $@
372 # so if you have a rule like the following
377 # @eval $(SCRIPT_SUBST)
379 # `make foo' would create a file `foo' containing the following
386 # ToDo: make this work for shell scripts (drop the initial $).
388 ifeq "$(INTERP)" "$(SHELL)"
389 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$(val)=\\\"$($(val))\\\";\" >> $@;")
391 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$$\"\"$(val)=\\\"$($(val))\\\";\" >> $@;")
394 all :: $(SCRIPT_PROG)
397 # #! support under cygwin32 is not quite there yet,
398 # so we rely on the eval `trick' instead. On all other
399 # platforms, we prepend #!$(INTERP) -- SOF 6/97
402 $(SCRIPT_PROG) :: $(SCRIPT_OBJS)
405 ifeq "$(INTERP)" "perl"
406 ifneq "$(BIN_DIST)" "1"
407 echo "#! "$(PERL) > $@
413 @echo "#!"$(INTERP) > $@
418 ifneq "$(SCRIPT_PREFIX_FILES)" ""
419 @cat $(SCRIPT_PREFIX_FILES) >> $@
421 @eval $(SCRIPT_SUBST)
422 @cat $(SCRIPT_OBJS) >> $@
427 # links to script programs: we sometimes install a script as
428 # <name>-<version> with a link from <name> to the real script.
430 ifneq "$(SCRIPT_LINK)" ""
431 all :: $(SCRIPT_LINK)
434 # Don't want to overwrite $(SCRIPT_LINK)s that aren't symbolic
435 # links. Testing for symbol links is problematic to do in
436 # a portable fashion using a /bin/sh test, so we simply rely
439 $(SCRIPT_LINK) : $(SCRIPT_PROG)
440 @if ( $(PERL) -e '$$fn="$(SCRIPT_LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
441 echo "Creating a symbol link from $(SCRIPT_PROG) to $(SCRIPT_LINK)"; \
442 $(RM) $(SCRIPT_LINK); \
443 $(LN_S) $(SCRIPT_PROG) $(SCRIPT_LINK); \
445 echo "Creating a symbol link from $(SCRIPT_PROG) to $(SCRIPT_LINK) failed: \`$(SCRIPT_LINK)' already exists"; \
446 echo "Perhaps remove \`$(SCRIPT_LINK)' manually?"; \
453 ###########################################
455 # Targets: install install-strip uninstall
457 ###########################################
459 # For each of these variables that is defined, you
460 # get one install rule
462 # INSTALL_PROGS executable programs in $(bindir)
463 # INSTALL_SCRIPTS executable scripts in $(bindir)
464 # INSTALL_LIBS platform-dependent libraries in $(libdir) (ranlib'ed)
465 # INSTALL_LIBEXECS platform-dependent execs in $(libdir)
466 # INSTALL_DATAS platform-independent files in $(datadir)
468 # If the installation directory variable is undefined, the install rule simply
469 # emits a suitable error message.
471 # Remember, too, that the installation directory variables ($(bindir) and
472 # friends can be overridden from their original settings in mk/config.mk.in
475 .PHONY: install installdirs install-strip install-dirs uninstall install-docs show-install
478 @echo "bindir = $(bindir)"
479 @echo "libdir = $(libdir)"
480 @echo "libexecdir = $(libexecdir) # by default, same as libdir"
481 @echo "datadir = $(datadir) # unused for ghc project"
484 # Sometimes useful to separate out the creation of install directories
485 # from the installation itself.
488 @$(INSTALL_DIR) $(bindir)
489 @$(INSTALL_DIR) $(libdir)
490 @$(INSTALL_DIR) $(libexecdir)
491 @$(INSTALL_DIR) $(datadir)
493 # Better do this first...
494 # but we won't for the moment, do it on-demand from
495 # within the various install targets instead.
496 #install:: install-dirs
498 ifneq "$(INSTALL_PROGS)" ""
499 install:: $(INSTALL_PROGS)
500 @$(INSTALL_DIR) $(bindir)
501 @for i in $(INSTALL_PROGS); do \
502 echo $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i$(exeext) $(bindir); \
503 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i$(exeext) $(bindir); \
508 # Just like INSTALL_PROGS, but prefix with install sites bin/lib/data and
509 # install without stripping.
511 ifneq "$(INSTALL_SCRIPTS)" ""
512 install:: $(INSTALL_SCRIPTS)
513 @$(INSTALL_DIR) $(bindir)
514 ifeq "$(INTERP)" "perl"
515 ifneq "$(BIN_DIST)" "1"
516 @for i in $(INSTALL_SCRIPTS); do \
518 echo "#! $(PERL)" > $$i.tmp ; \
519 echo '$$'"bindir='$(bindir)';" >> $$i.tmp ; \
520 echo '$$'"libdir='$(libdir)';" >> $$i.tmp ; \
521 echo '$$'"libexecdir='$(libexecdir)';" >> $$i.tmp ; \
522 echo '$$'"datadir='$(datadir)';" >> $$i.tmp ; \
523 cat $$i >> $$i.tmp ; \
524 echo $(INSTALL_PROGRAM) $(filter-out -s,$(INSTALL_BIN_OPTS)) $$i.tmp $(bindir)/$$i ; \
525 $(INSTALL_PROGRAM) $(filter-out -s,$(INSTALL_BIN_OPTS)) $$i.tmp $(bindir)/$$i ; \
529 for i in $(INSTALL_SCRIPTS); do \
530 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(bindir); \
534 for i in $(INSTALL_SCRIPTS); do \
535 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(bindir); \
540 ifneq "$(INSTALL_LIB_SCRIPTS)" ""
541 install:: $(INSTALL_LIB_SCRIPTS)
542 @$(INSTALL_DIR) $(libdir)
543 ifeq "$(INTERP)" "perl"
544 ifneq "$(BIN_DIST)" "1"
545 @for i in $(INSTALL_LIB_SCRIPTS); do \
547 echo "#! $(PERL)" > $$i.tmp ; \
548 echo '$$'"bindir='$(bindir)';" >> $$i.tmp ; \
549 echo '$$'"libdir='$(libdir)';" >> $$i.tmp ; \
550 echo '$$'"libexecdir='$(libexecdir)';" >> $$i.tmp ; \
551 echo '$$'"datadir='$(datadir)';" >> $$i.tmp ; \
552 cat $$i >> $$i.tmp ; \
553 echo $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir) ; \
554 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i.tmp $(libdir)/$$i ; \
558 for i in $(INSTALL_LIB_SCRIPTS); do \
559 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir); \
563 for i in $(INSTALL_LIB_SCRIPTS); do \
564 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir); \
569 ifneq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
570 install:: $(INSTALL_LIBEXEC_SCRIPTS)
571 @$(INSTALL_DIR) $(libexecdir)
572 ifeq "$(INTERP)" "perl"
573 ifneq "$(BIN_DIST)" "1"
574 @for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
576 echo "#! $(PERL)" > $$i.tmp ; \
577 echo '$$'"bindir='$(bindir)';" >> $$i.tmp ; \
578 echo '$$'"libdir='$(libdir)';" >> $$i.tmp ; \
579 echo '$$'"libexecdir='$(libexecdir)';" >> $$i.tmp ; \
580 echo '$$'"datadir='$(datadir)';" >> $$i.tmp ; \
581 cat $$i >> $$i.tmp ; \
582 echo $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir) ; \
583 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i.tmp $(libexecdir)/$$i ; \
587 for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
588 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir); \
592 for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
593 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir); \
598 ifneq "$(INSTALL_LIBS)" ""
599 install:: $(INSTALL_LIBS)
600 @$(INSTALL_DIR) $(libdir)
601 for i in $(INSTALL_LIBS); do \
604 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
605 $(RANLIB) $(libdir)/`basename $$i` ;; \
607 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
612 ifneq "$(INSTALL_LIBEXECS)" ""
613 install:: $(INSTALL_LIBEXECS)
614 @$(INSTALL_DIR) $(libexecdir)
615 -for i in $(INSTALL_LIBEXECS); do \
616 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i$(exeext) $(libexecdir); \
620 ifneq "$(INSTALL_DATAS)" ""
621 install:: $(INSTALL_DATAS)
622 @$(INSTALL_DIR) $(datadir)
623 for i in $(INSTALL_DATAS); do \
624 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
632 @for i in $(INSTALL_PROGS) "" ; do \
633 if test "$$i"; then \
634 echo rm -f $(bindir)/`basename $$i`; \
635 rm -f $(bindir)/`basename $$i`; \
638 @for i in $(INSTALL_LIBS) ""; do \
639 if test "$$i"; then \
640 echo rm -f $(libdir)/`basename $$i`; \
641 rm -f $(libdir)/`basename $$i`; \
644 @for i in $(INSTALL_LIBEXECS) ""; do \
645 if test "$$i"; then \
646 echo rm -f $(libexecdir)/`basename $$i`; \
647 rm -f $(libexecdir)/`basename $$i`; \
650 @for i in $(INSTALL_DATAS) ""; do \
651 if test "$$i"; then \
652 echo rm -f $(datadir)/`basename $$i`; \
653 rm -f $(datadir)/`basename $$i`; \
658 # install-strip is from the GNU Makefile standard.
662 @$(MAKE) EXTRA_INSTALL_OPTS='-s' install
666 # install links to script drivers.
668 ifneq "$(SCRIPT_LINK)" ""
670 @if ( $(PERL) -e '$$fn="$(bindir)/$(SCRIPT_LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
671 echo "Creating a symbol link from $(SCRIPT_PROG) to $(SCRIPT_LINK) in $(bindir)"; \
672 $(RM) $(bindir)/$(SCRIPT_LINK); \
673 $(LN_S) $(SCRIPT_PROG) $(bindir)/$(SCRIPT_LINK); \
675 echo "Creating a symbol link from $(SCRIPT_PROG) to $(SCRIPT_LINK) in $(bindir) failed: \`$(bindir)/$(SCRIPT_LINK)' already exists"; \
676 echo "Perhaps remove \`$(bindir)/$(SCRIPT_LINK)' manually?"; \
682 ###########################################
684 # Targets: dist binary-dist
686 ###########################################
690 # dist-pre is a canned rule the toplevel of your source tree
691 # would use as follows,
695 # it performs two tasks, first creating the distribution directory
696 # tree and it then decorates the new tree with symbolic links pointing
697 # to the symbolic links in the build tree.
699 # The dist-pre relies on (at least) the `find' in GNU findutils
700 # (only tested with version 4.1). All non-GNU `find's I have
701 # laid on my hands locally, has a restrictive treatment of {} in
702 # -exec commands, i.e.,
704 # find . -print echo a{} \;
706 # does not expand the {}, it has to be a separate argument (i.e. `a {}').
707 # GNU find is (IMHO) more sensible here, expanding any {} it comes across
708 # inside an -exec, whether it is a separate arg or part of a word:
712 # GNU find version 4.1
713 # $ find yes -exec echo oh,{}! \;
716 # Of course, the above is not impossible to achieve with other finds,
717 # just that GNU find does the Patently Right Thing here :)
719 # ====> if you're using these dist rules, get hold of GNU findutils.
723 .PHONY: dist dist-pre dist-post
726 # The dist rules leaves out CVS, SRC (from mkshadowdir) and tests
727 # directories when creating shadow source distrib tree
730 -rm -rf $(SRC_DIST_DIR)
731 -rm -f $(SRC_DIST_NAME).tar.gz
732 (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -exec $(MKDIRHIER) $(SRC_DIST_DIR)/{} \; \) ; )
733 (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -name "*~" -prune -o -name ".cvsignore" -prune -o -name "\#*" -prune -o -name ".\#*" -prune -o -type l -exec $(LN_S) $(FPTOOLS_TOP_ABS)/{} $(SRC_DIST_DIR)/{} \; )
736 # After having created a shadow distribution tree and copied/linked
737 # all the necessary files to it, `dist-post' makes sure the permissions
738 # are set right and then package up the tree. Empty directories are also removed.
740 # For now, we make the packaging a separate rule, so as to allow
741 # the inspection of the dist tree before eventually packaging it up.
744 @echo Deleting the following empty directories..
745 ( cd $(SRC_DIST_DIR) ; cd .. ; find $(SRC_DIST_NAME) -type d -exec sh -c 'test x`ls $$0 | wc -l | sed -e "s/ //g"` = x0' {} \; -print -exec rm -rf {} \; -prune )
746 ( cd $(SRC_DIST_DIR) ; cd .. ; chmod -R a+rw $(SRC_DIST_NAME) )
748 # Automatic generation of a MANIFEST file for a source distribution
749 # tree that is ready to go.
751 cd $(SRC_DIST_DIR); find . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > /tmp/MANIFEST ; mv /tmp/MANIFEST MANIFEST
753 dist-package:: dist-package-tar-gz
755 dist-package-tar-gz ::
756 cd $(SRC_DIST_DIR); cd ..; $(TAR) chzf $(SRC_DIST_NAME).tar.gz $(SRC_DIST_NAME)
759 cd $(SRC_DIST_DIR); cd ..; $(ZIP) $(ZIP_OPTS) -r $(SRC_DIST_NAME).zip $(SRC_DIST_NAME)
762 # binary-dist creates a binary bundle, set BIN_DIST_NAME
763 # to package name and do `make binary-dist' (normally this
764 # just a thing you would do from the toplevel of fptools or)
765 # from the top of a project.
767 .PHONY: binary-dist-pre binary-dist binary-pack
770 -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
771 -rm -f $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
772 @for i in $(BIN_DIST_DIRS); do \
773 if test -d "$$i"; then \
774 echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion); \
775 $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion); \
776 echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion); \
777 $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion); \
778 echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$(ProjectNameShort)-$(ProjectVersion); \
779 $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$(ProjectNameShort)-$(ProjectVersion); \
780 echo $(MAKE) -C $$i $(MFLAGS) install BIN_DIST=1 BIN_DIST_NAME=$(BIN_DIST_NAME) \
781 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
782 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
783 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
784 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
785 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
786 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$(ProjectNameShort)-$(ProjectVersion) ; \
787 $(MAKE) -C $$i $(MFLAGS) install BIN_DIST=1 BIN_DIST_NAME=$(BIN_DIST_NAME) \
788 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
789 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
790 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
791 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
792 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
793 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$(ProjectNameShort)-$(ProjectVersion) ; \
798 # Do this separately for now
801 ( cd $(BIN_DIST_TMPDIR); $(TAR) chzf $(BIN_DIST_NAME).tar.gz $(BIN_DIST_NAME); rm -rf $(BIN_DIST_NAME) )
805 ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print | xargs tar cvf $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar )
806 gzip $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar
811 ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print -exec rm -f {} \; )
814 ###########################################
816 # Targets: check tags show info
818 ###########################################
820 #------------------------------------------------------------
826 @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do \
827 if (test -f "$$i"); then \
828 echo Running: `basename $$i` ; \
829 cd test; `basename $$i` ; \
833 #------------------------------------------------------------
838 tags TAGS:: $(TAGS_HS_SRCS) $(TAGS_C_SRCS)
841 ifneq "$(TAGS_HS_SRCS)" ""
842 $(HSTAGS) $(HSTAGS_OPTS) -- $(TAGS_HS_SRCS)
844 ifneq "$(TAGS_C_SRCS)" ""
845 etags -a $(TAGS_C_SRCS)
847 @( 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?
849 #------------------------------------------------------------
851 # to see the effective value used for a Makefile variable, do
852 # make show VALUE=MY_VALUE
856 @echo '$(VALUE)=$($(VALUE))'
858 #--------------------------------------------------------------------------
861 .PHONY: dvi ps html info txt
863 ifneq "$(SGML_DOC)" ""
865 # multi-file SGML document: main document name is specified in $(SGML_DOC),
866 # sub-documents (.sgml files) listed in $(SGML_SRCS).
868 ifeq "$(VSGML_SRCS)" ""
869 VSGML_SRCS = $(wildcard *.vsgml)
872 ifeq "$(SGML_SRCS)" ""
873 ifneq "$(VSGML_SRCS)" ""
874 SGML_SRCS = $(patsubst %.vsgml, %.sgml, $(VSGML_SRCS))
876 SGML_SRCS = $(wildcard *.sgml)
880 SGML_DVI = $(SGML_DOC).dvi
881 SGML_PS = $(SGML_DOC).ps
882 SGML_INFO = $(SGML_DOC).info
883 SGML_HTML = $(SGML_DOC).html
884 SGML_TEXT = $(SGML_DOC).txt
886 $(SGML_DVI) $(SGML_PS) $(SGML_INFO) $(SGML_HTML) $(SGML_TEXT) :: $(SGML_SRCS)
894 CLEAN_FILES += $(SGML_TEXT) $(SGML_DOC)*.html $(SGML_PS) $(SGML_DVI)
898 ###########################################
902 ###########################################
904 .PHONY: realclean mostlyclean clean distclean maintainer-clean
906 # realclean is just a synonym for maintainer-clean
907 realclean: maintainer-clean
910 ifneq "$(MOSTLY_CLEAN_FILES)" ""
912 rm -f $(MOSTLY_CLEAN_FILES)
915 ifneq "$(CLEAN_FILES)" ""
921 ifneq "$(DIST_CLEAN_FILES)" ""
922 distclean:: mostlyclean clean
923 rm -f $(DIST_CLEAN_FILES)
927 ifneq "$(MAINTAINER_CLEAN_FILES)" ""
928 maintainer-clean:: mostlyclean clean distclean
929 @echo 'This command is intended for maintainers to use; it'
930 @echo 'deletes files that may need special tools to rebuild.'
931 rm -f $(MAINTAINER_CLEAN_FILES)
935 # If (Haskell) object files are split, cleaning up
936 # consist of descending into the directories where
937 # the myriads of object files have been put.
940 ifneq "$(HS_OBJS)" ""
941 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
943 find $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food
944 -rmdir $(patsubst %.$(way_)o,%,$(HS_OBJS)) > /dev/null 2>&1
949 #################################################################################
953 #################################################################################
955 # Here is the ingenious jiggery pokery that allows you to build multiple versions
956 # of a program in a single build tree.
958 # The ways setup requires the following variables to be set:
960 # Expects: $(WAYS) the possible "way" strings to one of
961 # which $(way) will be set
964 # So how does $(way) ever get set to anything? Answer, we recursively
965 # invoke make, setting $(way) on the command line.
966 # When do we do this recursion? Answer: whenever the programmer
967 # asks make to make a target that involves a way suffix.
968 # We must remember *not* to recurse again; but that's easy: we
969 # just see if $(way) is set:
973 # If $(WAYS) = p mc, then WAY_TARGETS expands to
974 # %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
975 # and OTHER_WAY_TARGETS to
976 # %_p.a %_p %_mc.a %_mc
977 # where the suffixes are from $(SUFFIXES)
979 # We have to treat libraries and "other" targets differently,
980 # because their names are of the form
981 # libHS_p.a and Foo_p
982 # whereas everything else has names of the form
985 FPTOOLS_SUFFIXES := o hi hc
987 WAY_TARGETS = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
988 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
990 # $@ will be something like Foo.p_o
991 # $(suffix $@) returns .p_o
992 # $(subst .,.p_o) returns p_o
993 # $(subst _,.,p_o) returns p.o (clever)
994 # $(basename p.o) returns p
997 $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
999 # $(@F) will be something like libHS_p.a, or Foo_p
1000 # $(basename $(@F)) will be libHS_p, or Foo_p
1001 # The sed script extracts the "p" part.
1003 $(LIB_WAY_TARGETS) :
1004 $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
1009 ##################################################################
1013 ##################################################################
1015 # Here are the diabolically clever rules that
1017 # (a) for each "recursive target" <t>
1018 # propagates "make <t>" to directories in SUBDIRS
1020 # (b) when SUBDIRS is empty,
1021 # for each "multi-way-target" <t>
1022 # calls "make -way=w <t>" for each w in $(WAYS)
1024 # This has the effect of making the standard target
1025 # in each of the specified ways (as well as in the normal way
1027 # Controlling variables
1028 # WAYS = extra (beyond the normal way) ways to build things in
1029 # SUBDIRS = subdirectories to recurse into
1031 # No ways, so iterate over the SUBDIRS
1033 # note about recursively invoking make: we'd like make to drop all the
1034 # way back to the top level if it fails in any of the
1035 # sub(sub-...)directories. This is done by setting the -e flag to the
1036 # shell during the loop, which causes an immediate failure if any of
1037 # the shell commands fail.
1039 # One exception: if the user gave the -i or -k flag to make in the
1040 # first place, we'd like to reverse this behaviour. So we check for
1041 # these flags, and set the -e flag appropriately. NOTE: watch out for
1042 # the --no-print-directory flag which is passed to recursive
1043 # invocations of make.
1045 # NOTE: Truly weird use of exit below to stop the for loop dead in
1046 # its tracks should any of the sub-makes fail. By my reckoning,
1047 # "cmd || exit $?" should be equivalent to "cmd"
1050 ifneq "$(SUBDIRS)" ""
1052 all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
1053 @echo "------------------------------------------------------------------------"
1054 @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
1055 @echo "PWD = $(shell pwd)"
1056 @echo "------------------------------------------------------------------------"
1057 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1058 @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1059 for i in $(SUBDIRS); do \
1060 echo "------------------------------------------------------------------------"; \
1061 echo "==fptools== $(MAKE) $@ $(MFLAGS);"; \
1062 echo " in $(shell pwd)/$$i"; \
1063 echo "------------------------------------------------------------------------"; \
1064 $(MAKE) --no-print-directory -C $$i $(MFLAGS) $@; \
1065 if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \
1067 @echo "------------------------------------------------------------------------"
1068 @echo "===fptools== Finished making \`$@' in $(SUBDIRS) ..."
1069 @echo "PWD = $(shell pwd)"
1070 @echo "------------------------------------------------------------------------"
1073 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1074 @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1075 for i in $(SUBDIRS) ; do \
1076 $(MKDIRHIER_PREFIX)mkdirhier $(SRC_DIST_DIR)/$$i; \
1077 $(MAKE) -C $$i $(MFLAGS) $@ SRC_DIST_DIR=$(SRC_DIST_DIR)/$$i; \
1078 if [ $$? -eq 0 ] ; then true; else exit $$x_on_err; fi; \
1083 # The default dist rule:
1085 # copy/link the contents of $(SRC_DIST_FILES) into the
1086 # shadow distribution tree. SRC_DIST_FILES contain the
1087 # build-generated files that you want to include in
1088 # a source distribution.
1091 ifneq "$(SRC_DIST_FILES)" ""
1093 @for i in $(SRC_DIST_FILES); do \
1094 if ( echo "$$i" | grep "~" >/dev/null 2>&1 ); then \
1095 echo $(LN_S) `pwd`/`echo $$i | sed -e "s/^\([^~]*\)~.*/\1/g"` $(SRC_DIST_DIR)/`echo $$i | sed -e "s/.*~\(.*\)/\1/g"` ; \
1096 $(LN_S) `pwd`/`echo $$i | sed -e "s/^\([^~]*\)~.*/\1/g"` $(SRC_DIST_DIR)/`echo $$i | sed -e "s/.*~\(.*\)/\1/g"` ; \
1098 if (test -f "$$i"); then \
1099 echo $(LN_S) `pwd`/$$i $(SRC_DIST_DIR)/$$i ; \
1100 $(LN_S) `pwd`/$$i $(SRC_DIST_DIR)/$$i ; \
1108 # Selectively building subdirectories.
1111 ifneq "$(SUBDIRS)" ""
1113 $(MAKE) -C $@ $(MFLAGS)
1119 # NB: the targets exclude
1120 # boot info TAGS runtests
1121 # since these are way-independent
1122 all docs TAGS clean veryclean maintainer-clean install ::
1123 @echo "------------------------------------------------------------------------"
1124 @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
1125 @echo "PWD = $(shell pwd)"
1126 @echo "------------------------------------------------------------------------"
1127 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1128 @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1129 for i in $(WAYS) ; do \
1130 echo "------------------------------------------------------------------------"; \
1131 echo "==fptools== $(MAKE) way=$$i $@;"; \
1132 echo "PWD = $(shell pwd)"; \
1133 echo "------------------------------------------------------------------------"; \
1134 $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
1135 if [ $$? -eq 0 ] ; then true; else exit $$x_on_err; fi; \
1137 @echo "------------------------------------------------------------------------"
1138 @echo "===fptools== Finished recursively making \`$@' for ways: $(WAYS) ..."
1139 @echo "PWD = $(shell pwd)"
1140 @echo "------------------------------------------------------------------------"