Changeset 114

Show
Ignore:
Timestamp:
03/09/09 14:02:38 (15 years ago)
Author:
bhilburn
Message:

Fixed gitignore file, adding options to autoconf file.

Location:
vtcross/branches/bhilburn
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • vtcross/branches/bhilburn/.gitignore

    r113 r114  
    1 # Personalized gitignore file I copy into projects I am working on and then 
    2 # tweak as necessary. 
    3  
    41# git-ls-files --others --exclude-from=.git/info/exclude 
    52# Lines that start with '#' are comments. 
    63# For a project mostly in C, the following would be a good set of 
    74# exclude patterns (uncomment them if you want to use them): 
    8  *.[oad] 
    9  *~ 
     5*.[oad] 
     6*~ 
    107 
    11  # There are a ton of files created by autofoo and libtool that we don't care 
    12  # about.  Ignore all of them. 
    13  Makefile 
    14  Makefile.in 
    15  configure.in 
    16  aclocal.m4 
    17  config.guess 
    18  config.log 
    19  config.status 
    20  config.sub 
    21  configure 
    22  src/include/config.h 
    23  src/include/stamp-h1 
    24  install-sh 
    25  libtool 
    26  ltmain.sh 
    27  missing 
    28  depcomp 
    29  autom4te.cache/* 
     8# There are a ton of files created by autofoo and libtool that we don't care 
     9# about.  Ignore all of them. 
     10Makefile 
     11Makefile.in 
     12configure.in 
     13aclocal.m4 
     14config.guess 
     15config.log 
     16config.status 
     17config.sub 
     18configure 
     19src/include/config.h 
     20src/include/stamp-h1 
     21install-sh 
     22libtool 
     23ltmain.sh 
     24missing 
     25depcomp 
     26autom4te.cache/* 
    3027 
  • vtcross/branches/bhilburn/configure.ac

    r110 r114  
    1 AC_INIT([vtcross], [0.0.0]) 
    2  
     1AC_INIT 
    32AM_INIT_AUTOMAKE(vtcross, 0.1) 
    43 
    54AC_PROG_CC 
    65AC_PROG_CXX 
     6AC_PROG_RANLIB 
    77 
    88AC_PROG_INSTALL 
    9 AC_OUTPUT(Makefile) 
     9AC_OUTPUT(Makefile doc/Makefile src/Makefile) 
    1010