From: wolf Date: Mon, 18 Sep 2000 07:57:33 +0000 (+0000) Subject: Document DEAL_2_MAJOR/MINOR. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f937350e0b12648f530829ed978264cd7128835;p=dealii-svn.git Document DEAL_2_MAJOR/MINOR. git-svn-id: https://svn.dealii.org/trunk@3330 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 +

    +