Changeset 75

Show
Ignore:
Timestamp:
04/24/07 10:37:18 (1 year ago)
Author:
takkaria
Message:

Clean up autogen.sh a bit, and add the forgotten src/src.mk. (finishes off #61)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/autogen.sh

    r74 r75  
    1212ACLOCAL=${ACLOCAL:-aclocal} 
    1313AUTOHEADER=${AUTOHEADER:-autoheader} 
    14  
    15 dump_help_screen () 
    16 { 
    17     echo "Usage: autogen.sh [options]" 
    18     echo  
    19     echo "options:" 
    20     echo "  -n           skip CVS changelog creation" 
    21     echo "  -h,--help    show this help screen" 
    22     echo 
    23     exit 0 
    24 } 
    25  
    26 parse_options () 
    27 { 
    28     while test "$1" != "" ; do 
    29         case $1 in 
    30             -h|--help) 
    31                 dump_help_screen 
    32                 ;; 
    33             -n) 
    34                 SKIP_CVS_CHANGELOG=yes 
    35                 ;; 
    36             *) 
    37                 echo Invalid argument - $1 
    38                 dump_help_screen 
    39                 ;; 
    40         esac 
    41         shift 
    42     done 
    43 } 
    4414 
    4515run_or_die () 
     
    7545} 
    7646 
    77 parse_options "$@" 
    78  
    7947cd $TOP_DIR 
    8048 
     
    8452 
    8553cd $LAST_DIR 
    86