Changeset 72


Ignore:
Timestamp:
Oct 2, 2003, 3:08:13 AM (20 years ago)
Author:
Sam Hocevar
Message:
  • Fixed keywords, ignore, and lots of tiny SVN things.
Location:
ttyvaders/trunk
Files:
21 edited

Legend:

Unmodified
Added
Removed
  • ttyvaders/trunk

    • Property svn:ignore set to
      Makefile.in
      Makefile
      aclocal.m4
      autom4te.cache
      config.h.in
      config.h
      config.log
      config.status
      configure
      libtool
      stamp-*
      *-stamp
      INSTALL
  • ttyvaders/trunk/autotools

    • Property svn:ignore set to
      Makefile.in
      Makefile
      compile
      config.guess
      config.sub
      depcomp
      install-sh
      ltmain.sh
      missing
      mkinstalldirs
  • ttyvaders/trunk/bootstrap

    • Property svn:keywords set to Id
    r40 r72  
    11#! /bin/sh
     2
     3##  bootstrap file for ttyvaders -- Sam Hocevar <sam@zoy.org>
     4##  $Id$
     5
    26set -x
     7set -e
    38
    4 rm -f aclocal.m4 configure libtool ltconfig ltmain.sh config.log
    5 rm -f autotools/compile autotools/config.guess autotools/config.sub autotools/missing autotools/mkinstalldirs autotools/depcomp autotools/install-sh
     9# Get a sane environment, just in case
     10LANG=C
     11export LANG
     12CYGWIN=binmode
     13export CYGWIN
    614
    715# Check for automake
    8 amvers="none"
    9 if automake-1.7 --version >/dev/null 2>&1
    10 then
     16amvers="no"
     17if automake-1.7 --version >/dev/null 2>&1; then
    1118  amvers="-1.7"
    12 else
    13   if automake-1.6 --version >/dev/null 2>&1
    14   then
    15     amvers="-1.6"
     19elif automake-1.6 --version >/dev/null 2>&1; then
     20  amvers="-1.6"
     21elif automake-1.5 --version >/dev/null 2>&1; then
     22  amvers="-1.5"
     23elif automake --version > /dev/null 2>&1; then
     24  amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`"
     25  if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then
     26    amvers="no"
    1627  else
    17     if automake-1.5 --version >/dev/null 2>&1
    18     then
    19       amvers="-1.5"
    20     else
    21       if automake --version > /dev/null 2>&1
    22       then
    23         amvers=`automake --version | sed -e '1s/[^0-9]*//' -e q`
    24  
    25         if expr "$amvers" "<" "1.5" > /dev/null 2>&1
    26         then amvers="none"
    27         else amvers=""
    28         fi       
    29       fi
    30     fi
     28    amvers=""
    3129  fi
    3230fi
    3331
    34 if test x$amvers = xnone
    35 then
     32if test "$amvers" = "no"; then
    3633  set +x
    37   echo "you need automake version 1.5 or later"
     34  echo "$0: you need automake version 1.5 or later"
    3835  exit 1
    3936fi
    4037
    41 aclocal${amvers} -I autotools || exit 1
    42 autoheader || exit 1
    43 automake${amvers} --add-missing --copy || exit 1
    44 autoconf || exit 1
    45 rm -f config.cache
     38# Remove old cruft
     39rm -f aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh INSTALL
     40(cd autotools && rm -f config.guess config.sub missing mkinstalldirs compile ltmain.sh depcomp install-sh)
     41
     42aclocal${amvers}
     43autoconf
     44autoheader
     45automake${amvers} --add-missing --copy
     46
  • ttyvaders/trunk/configure.ac

    • Property svn:keywords set to Id
    r66 r72  
    1 dnl Autoconf settings for ttyvaders
     1# $Id$
    22
    33AC_INIT(ttyvaders,0.0cvs-20021223)
  • ttyvaders/trunk/debian

    • Property svn:ignore set to
      Makefile.in
      Makefile
      *.debhelper
      *.substvars
      ttyvaders
  • ttyvaders/trunk/src

    • Property svn:ignore set to
      Makefile.in
      Makefile
      .libs
      .deps
      ttyvaders
      ttyvaders.exe
  • ttyvaders/trunk/src/aliens.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/bonus.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/box.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/ceo.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/collide.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/common.h

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/explosions.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/graphics.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/main.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/math.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/overlay.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/player.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/starfield.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/tunnel.c

    • Property svn:keywords set to Id
  • ttyvaders/trunk/src/weapons.c

    • Property svn:keywords set to Id
Note: See TracChangeset for help on using the changeset viewer.