#!/bin/sh

if [ "$quiet" = "yes" ]; then return; fi

cat << SUMMARY_END

Project name      : $PROJECT_NAME
Project fullname  : $PROJECT_FULLNAME
Project copyright : $PROJECT_COPYRIGHT
Project version   : $PROJECT_VERSION
Project page      : $PROJECT_PAGE
Project mail      : $PROJECT_MAIL

Configuration summary

  DESTDIR         : $DESTDIR

  prefix          : $prefix
  exec_prefix     : $exec_prefix
  bindir          : $bindir
  sbindir         : $sbindir
  libexecdir      : $libexecdir
  datarootdir     : $datarootdir
  datadir         : $datadir
  sysconfdir      : $sysconfdir
  sharedstatedir  : $sharedstatedir
  localstatedir   : $localstatedir
  docdir          : $docdir
  infodir         : $infodir
  htmldir         : $htmldir
  dvidir          : $dvidir
  pdfdir          : $pdfdir
  psdir           : $psdir
  libdir          : $libdir
  localedir       : $localedir
  mandir          : $mandir
  man1dir         : $man1dir
  man2dir         : $man2dir
  man3dir         : $man3dir
  man4dir         : $man4dir
  man5dir         : $man5dir
  man6dir         : $man6dir
  man7dir         : $man7dir
  man8dir         : $man8dir
  man9dir         : $man9dir
  manext          : $manext
  man1ext         : $man1ext
  man2ext         : $man2ext
  man3ext         : $man3ext
  man4ext         : $man4ext
  man5ext         : $man5ext
  man6ext         : $man6ext
  man7ext         : $man7ext
  man8ext         : $man8ext
  man9ext         : $man9ext

  INSTALL         : $INSTALL
  SHELL           : $SHELL
  CC              : $CC
  BISON           : $BISON
  FLEX            : $FLEX
  RM              : $RM
  RMDIR           : $RMDIR
  TEST            : $TEST
  MAKE            : $MAKE
  GREP            : $GREP
  CUT             : $CUT
  SORT            : $SORT
  PR              : $PR
  CP              : $CP
  CHMOD           : $CHMOD
  MAKEINFO        : $MAKEINFO
  TEXI2DVI        : $TEXI2DVI
  TEXI2PDF        : $TEXI2PDF
  DVIPS           : $DVIPS

  CFLAGS          : $CFLAGS
  LDFLAGS         : $LDFLAGS
  LDLIBS          : $LDLIBS
  BFLAGS          : $BFLAGS
  FFLAGS          : $FFLAGS

SUMMARY_END
