From 224e2ba0ce7455a6d5c58861c09e21cecec09eef Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 18 Sep 2000 07:57:33 +0000 Subject: [PATCH] Document DEAL_2_MAJOR/MINOR. git-svn-id: https://svn.dealii.org/trunk@3330 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/development/Makefile | 4 +++ deal.II/doc/development/makefiles.1.html | 36 ++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/deal.II/doc/development/Makefile b/deal.II/doc/development/Makefile index cb069fe1d6..c17cfc1daa 100644 --- a/deal.II/doc/development/Makefile +++ b/deal.II/doc/development/Makefile @@ -10,9 +10,13 @@ default: makefiles.html makefile.small.html makefile.large.html makefile.rules.h makefiles.html: Makefile makefiles.1.html $D/common/Make.global_options makefiles.2.html @cat makefiles.1.html > $@ + @echo '
  • D=$D' >> $@ @echo '
  • CXX=$(CXX)' >> $@ @echo '
  • CC=$(CC)' >> $@ + @echo '
  • GXX-VERSION=$(GXX-VERSION)' >> $@ @echo '
  • PERL=$(PERL)' >> $@ + @echo '
  • DEAL_2_MAJOR=$(DEAL_2_MAJOR)' >> $@ + @echo '
  • DEAL_2_MINOR=$(DEAL_2_MINOR)' >> $@ @echo '
  • lib-path-base=$(lib-path-base)' >> $@ @echo '
  • lib-path-lac=$(lib-path-lac)' >> $@ @echo '
  • lib-path-deal2=$(lib-path-deal2)' >> $@ diff --git a/deal.II/doc/development/makefiles.1.html b/deal.II/doc/development/makefiles.1.html index 45c9213e7a..0750423cbf 100644 --- a/deal.II/doc/development/makefiles.1.html +++ b/deal.II/doc/development/makefiles.1.html @@ -36,6 +36,13 @@
  • General

    +
    D
    +

    + Path to the deal.II library +

    +
    + +
    CXX

    Executable name of the C++ compiler @@ -51,11 +58,40 @@

    +
    GXX-VERSION
    +

    + Version of the GNU C++ compiler if that is used +

    +
    + +
    PERL

    Executable name of the `perl' program

    + + +
    DEAL_2_MAJOR
    +

    + Major version number of the deal.II + library, i.e. the number before the first dot. Note that + this version number is also available in programs through a + preprocessor variable +

    +
    + + +
    DEAL_2_MINOR
    +

    + Minor version number of the deal.II + library, i.e. the number after the first dot; if there are + further numbers, like in version 3.0.1, then they are + discarded as these versions only fix bugs but do not change + features. Note that this version number is also available + in programs through a preprocessor variable +

    +
    -- 2.39.5