Changeset c7ecbc2 for auto/options


Ignore:
Timestamp:
06/12/09 00:31:39 (15 years ago)
Author:
Mateusz Hromada <ruanda@…>
Branches:
master
Children:
25b4022
Parents:
9a36761
git-author:
Mateusz Hromada <ruanda@…> (06/12/09 00:31:39)
git-committer:
Mateusz Hromada <ruanda@…> (06/12/09 00:31:39)
Message:

Stadard targets added to Makefile. New targets:

  • install
  • install-*
  • uninstall
File:
1 edited

Legend:

Unmodified
Added
Removed
  • auto/options

    r9a36761 rc7ecbc2  
    1111if [ -z "$PROJECT_MAIL" ];      then PROJECT_MAIL=$DEFAULT_PROJECT_MAIL;            fi 
    1212 
     13if [ -z "$INSTALL" ];           then INSTALL=$DEFAULT_INSTALL;                      fi 
    1314if [ -z "$SHELL" ];             then SHELL=$DEFAULT_SHELL;                          fi 
    1415if [ -z "$CC" ];                then CC=$DEFAULT_CC;                                fi 
     
    4243if [ -z "$bindir" ];            then bindir=$DEFAULT_bindir;                        fi 
    4344if [ -z "$sbindir" ];           then sbindir=$DEFAULT_sbindir;                      fi 
     45if [ -z "$libexecdir" ];        then libexecdir=$DEFAULT_libexecdir;                fi 
    4446if [ -z "$datarootdir" ];       then datarootdir=$DEFAULT_datarootdir;              fi 
    4547if [ -z "$datadir" ];           then datadir=$DEFAULT_datadir;                      fi 
     
    4749if [ -z "$sharedstatedir" ];    then sharedstatedir=$DEFAULT_sharedstatedir;        fi 
    4850if [ -z "$localstatedir" ];     then localstatedir=$DEFAULT_localstatedir;          fi 
     51if [ -z "$docdir" ];            then docdir=$DEFAULT_docdir;                        fi 
     52if [ -z "$infodir" ];           then infodir=$DEFAULT_infodir;                      fi 
     53if [ -z "$htmldir" ];           then htmldir=$DEFAULT_htmldir;                      fi 
     54if [ -z "$dvidir" ];            then dvidir=$DEFAULT_dvidir;                        fi 
     55if [ -z "$pdfdir" ];            then pdfdir=$DEFAULT_pdfdir;                        fi 
     56if [ -z "$psdir" ];             then psdir=$DEFAULT_psdir;                          fi 
     57if [ -z "$libdir" ];            then libdir=$DEFAULT_libdir;                        fi 
     58if [ -z "$localedir" ];         then localedir=$DEFAULT_localedir;                  fi 
     59if [ -z "$mandir" ];            then mandir=$DEFAULT_mandir;                        fi 
     60if [ -z "$man1dir" ];           then man1dir=$DEFAULT_man1dir;                      fi 
     61if [ -z "$man2dir" ];           then man2dir=$DEFAULT_man2dir;                      fi 
     62if [ -z "$man3dir" ];           then man3dir=$DEFAULT_man3dir;                      fi 
     63if [ -z "$man4dir" ];           then man4dir=$DEFAULT_man4dir;                      fi 
     64if [ -z "$man5dir" ];           then man5dir=$DEFAULT_man5dir;                      fi 
     65if [ -z "$man6dir" ];           then man6dir=$DEFAULT_man6dir;                      fi 
     66if [ -z "$man7dir" ];           then man7dir=$DEFAULT_man7dir;                      fi 
     67if [ -z "$man8dir" ];           then man8dir=$DEFAULT_man8dir;                      fi 
     68if [ -z "$man9dir" ];           then man9dir=$DEFAULT_man9dir;                      fi 
     69if [ -z "$manext" ];            then manext=$DEFAULT_manext;                        fi 
     70if [ -z "$man1ext" ];           then man1ext=$DEFAULT_man1ext;                      fi 
     71if [ -z "$man2ext" ];           then man2ext=$DEFAULT_man2ext;                      fi 
     72if [ -z "$man3ext" ];           then man3ext=$DEFAULT_man3ext;                      fi 
     73if [ -z "$man4ext" ];           then man4ext=$DEFAULT_man4ext;                      fi 
     74if [ -z "$man5ext" ];           then man5ext=$DEFAULT_man5ext;                      fi 
     75if [ -z "$man6ext" ];           then man6ext=$DEFAULT_man6ext;                      fi 
     76if [ -z "$man7ext" ];           then man7ext=$DEFAULT_man7ext;                      fi 
     77if [ -z "$man8ext" ];           then man8ext=$DEFAULT_man8ext;                      fi 
     78if [ -z "$man9ext" ];           then man9ext=$DEFAULT_man9ext;                      fi 
     79 
    4980 
    5081for option 
     
    6091    --quiet)            quiet=yes                                 ;; 
    6192 
     93    DESTDIR=*)          DESTDIR="$value"                          ;; 
    6294    --prefix=*)         prefix="$value"                           ;; 
    6395    --exec-prefix=*)    exec_prefix="$value"                      ;; 
    6496    --bindir=*)         bindir="$value"                           ;; 
    6597    --sbindir=*)        sbindir="$value"                          ;; 
     98    --libexecdir=*)     libexecdir="$value"                       ;; 
    6699    --datarootdir=*)    datarootdir="$value"                      ;; 
    67100    --datadir=*)        datadir="$value"                          ;; 
     
    69102    --sharedstatedir=*) sharedstatedir="$value"                   ;; 
    70103    --localstatedir=*)  localstatedir="$value"                    ;; 
    71  
     104    --docdir=*)         docdir="$value"                           ;; 
     105    --infodir=*)        infodir="$value"                          ;; 
     106    --htmldir=*)        htmldir="$value"                          ;; 
     107    --dvidir=*)         dvidir="$value"                           ;; 
     108    --pdfdir=*)         pdfdir="$value"                           ;; 
     109    --psdir=*)          psdir="$value"                            ;; 
     110    --libdir=*)         libdir="$value"                           ;; 
     111    --localedir=*)      localedir="$value"                        ;; 
     112    --mandir=*)         mandir="$value"                           ;; 
     113    --man1dir=*)        man1dir="$value"                          ;; 
     114    --man2dir=*)        man2dir="$value"                          ;; 
     115    --man3dir=*)        man3dir="$value"                          ;; 
     116    --man4dir=*)        man4dir="$value"                          ;; 
     117    --man5dir=*)        man5dir="$value"                          ;; 
     118    --man6dir=*)        man6dir="$value"                          ;; 
     119    --man7dir=*)        man7dir="$value"                          ;; 
     120    --man8dir=*)        man8dir="$value"                          ;; 
     121    --man9dir=*)        man9dir="$value"                          ;; 
     122    --manext=*)         manext="$value"                           ;; 
     123    --man1ext=*)        man1ext="$value"                          ;; 
     124    --man2ext=*)        man2ext="$value"                          ;; 
     125    --man3ext=*)        man3ext="$value"                          ;; 
     126    --man4ext=*)        man4ext="$value"                          ;; 
     127    --man5ext=*)        man5ext="$value"                          ;; 
     128    --man6ext=*)        man6ext="$value"                          ;; 
     129    --man7ext=*)        man7ext="$value"                          ;; 
     130    --man8ext=*)        man8ext="$value"                          ;; 
     131    --man9ext=*)        man9ext="$value"                          ;; 
     132 
     133    INSTALL=*)          INSTALL="$value"                          ;; 
    72134    SHELL=*)            SHELL="$value"                            ;; 
    73135    CC=*)               CC="$value"                               ;; 
     
    89151    DVIPS=*)            DVIPS="$value"                            ;; 
    90152 
    91  
    92153    CFLAGS=*)           CFLAGS="$value"                           ;; 
    93154    LDFLAGS=*)          LDFLAGS="$value"                          ;; 
     
    124185  --bindir=PATH         user executables 
    125186  --sbindir=PATH        system admin executables 
     187  --libexecdir=PATH     program executables 
    126188  --datarootdir=PATH    read-only arch.-independent data root 
    127189  --datadir=PATH        read-only architecture-independent data 
     
    129191  --sharedstatedir=PATH modifiable architecture-independent data 
    130192  --localstatedir=PATH  modifiable single-machine data 
     193  --docdir=DIR          documentation root 
     194  --infodir=DIR         info documentation 
     195  --htmldir=DIR         html documentation 
     196  --dvidir=DIR          dvi documentation 
     197  --pdfdir=DIR          pdf documentation 
     198  --psdir=DIR           ps documentation 
     199  --libdir=DIR          object code libraries 
     200  --localedir=DIR       locale-dependent data 
     201  --mandir=DIR          man documentation 
     202  --man1dir=DIR         section 1 man documentation 
     203  --man2dir=DIR         section 2 man documentation 
     204  --man3dir=DIR         section 3 man documentation 
     205  --man4dir=DIR         section 4 man documentation 
     206  --man5dir=DIR         section 5 man documentation 
     207  --man6dir=DIR         section 6 man documentation 
     208  --man7dir=DIR         section 7 man documentation 
     209  --man8dir=DIR         section 8 man documentation 
     210  --man9dir=DIR         section 9 man documentation 
     211  --manext=EXT          man extension 
     212  --man1ext=EXT         section 1 man extension 
     213  --man2ext=EXT         section 2 man extension 
     214  --man3ext=EXT         section 3 man extension 
     215  --man4ext=EXT         section 4 man extension 
     216  --man5ext=EXT         section 5 man extension 
     217  --man6ext=EXT         section 6 man extension 
     218  --man7ext=EXT         section 7 man extension 
     219  --man8ext=EXT         section 8 man extension 
     220  --man9ext=EXT         section 9 man extension 
    131221 
    132222Some influential environment variables: 
    133223 
     224  INSTALL               install command 
    134225  SHELL                 shell command 
    135226  CC                    C compiler command 
Note: See TracChangeset for help on using the changeset viewer.