source: auto/summary @ 2f8d6d8

Last change on this file since 2f8d6d8 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
RevLine 
[c08f3b1]1#!/bin/sh
2
[63a5739]3if [ "$quiet" = "yes" ]; then return; fi
4
[c08f3b1]5cat << SUMMARY_END
6
[63a5739]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
[c08f3b1]14Configuration summary
15
[63a5739]16  DESTDIR         : $DESTDIR
[c08f3b1]17
[63a5739]18  prefix          : $prefix
19  exec_prefix     : $exec_prefix
20  bindir          : $bindir
21  sbindir         : $sbindir
[c7ecbc2]22  libexecdir      : $libexecdir
[63a5739]23  datarootdir     : $datarootdir
24  datadir         : $datadir
25  sysconfdir      : $sysconfdir
26  sharedstatedir  : $sharedstatedir
27  localstatedir   : $localstatedir
[c7ecbc2]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
[c08f3b1]56
[c7ecbc2]57  INSTALL         : $INSTALL
[63a5739]58  SHELL           : $SHELL
59  CC              : $CC
60  BISON           : $BISON
[44f59b8]61  FLEX            : $FLEX
[63a5739]62  RM              : $RM
63  RMDIR           : $RMDIR
64  TEST            : $TEST
65  MAKE            : $MAKE
66  GREP            : $GREP
67  CUT             : $CUT
68  SORT            : $SORT
69  PR              : $PR
[e4cec26]70  CP              : $CP
71  CHMOD           : $CHMOD
[9a36761]72  MAKEINFO        : $MAKEINFO
73  TEXI2DVI        : $TEXI2DVI
74  TEXI2PDF        : $TEXI2PDF
75  DVIPS           : $DVIPS
[63a5739]76
77  CFLAGS          : $CFLAGS
78  LDFLAGS         : $LDFLAGS
79  LDLIBS          : $LDLIBS
80  BFLAGS          : $BFLAGS
[e4cec26]81  FFLAGS          : $FFLAGS
[63a5739]82
83SUMMARY_END
Note: See TracBrowser for help on using the repository browser.