source: auto/summary @ 743cc4f

Last change on this file since 743cc4f was c7ecbc2, checked in by Mateusz Hromada <ruanda@…>, 15 years ago

Stadard targets added to Makefile. New targets:

  • install
  • install-*
  • uninstall
  • Property mode set to 100755
File size: 2.1 KB
Line 
1#!/bin/sh
2
3if [ "$quiet" = "yes" ]; then return; fi
4
5cat << SUMMARY_END
6
7Project name      : $PROJECT_NAME
8Project fullname  : $PROJECT_FULLNAME
9Project copyright : $PROJECT_COPYRIGHT
10Project version   : $PROJECT_VERSION
11Project page      : $PROJECT_PAGE
12Project mail      : $PROJECT_MAIL
13
14Configuration summary
15
16  DESTDIR         : $DESTDIR
17
18  prefix          : $prefix
19  exec_prefix     : $exec_prefix
20  bindir          : $bindir
21  sbindir         : $sbindir
22  libexecdir      : $libexecdir
23  datarootdir     : $datarootdir
24  datadir         : $datadir
25  sysconfdir      : $sysconfdir
26  sharedstatedir  : $sharedstatedir
27  localstatedir   : $localstatedir
28  docdir          : $docdir
29  infodir         : $infodir
30  htmldir         : $htmldir
31  dvidir          : $dvidir
32  pdfdir          : $pdfdir
33  psdir           : $psdir
34  libdir          : $libdir
35  localedir       : $localedir
36  mandir          : $mandir
37  man1dir         : $man1dir
38  man2dir         : $man2dir
39  man3dir         : $man3dir
40  man4dir         : $man4dir
41  man5dir         : $man5dir
42  man6dir         : $man6dir
43  man7dir         : $man7dir
44  man8dir         : $man8dir
45  man9dir         : $man9dir
46  manext          : $manext
47  man1ext         : $man1ext
48  man2ext         : $man2ext
49  man3ext         : $man3ext
50  man4ext         : $man4ext
51  man5ext         : $man5ext
52  man6ext         : $man6ext
53  man7ext         : $man7ext
54  man8ext         : $man8ext
55  man9ext         : $man9ext
56
57  INSTALL         : $INSTALL
58  SHELL           : $SHELL
59  CC              : $CC
60  BISON           : $BISON
61  FLEX            : $FLEX
62  RM              : $RM
63  RMDIR           : $RMDIR
64  TEST            : $TEST
65  MAKE            : $MAKE
66  GREP            : $GREP
67  CUT             : $CUT
68  SORT            : $SORT
69  PR              : $PR
70  CP              : $CP
71  CHMOD           : $CHMOD
72  MAKEINFO        : $MAKEINFO
73  TEXI2DVI        : $TEXI2DVI
74  TEXI2PDF        : $TEXI2PDF
75  DVIPS           : $DVIPS
76
77  CFLAGS          : $CFLAGS
78  LDFLAGS         : $LDFLAGS
79  LDLIBS          : $LDLIBS
80  BFLAGS          : $BFLAGS
81  FFLAGS          : $FFLAGS
82
83SUMMARY_END
Note: See TracBrowser for help on using the repository browser.