Mercurial > sdl-ios-xcode
view autogen.sh @ 961:185acc07127a
Date: Fri, 29 Oct 2004 11:47:09 +0200
From: Patrice Mandin
Subject: Reworked audio drivers for Atari platform
These are reworked audio drivers for the Atari platform.
Previous drivers were missing some features:
- Test external clock plugged to DSP port on Atari Falcon 030.
- Ability to select internal or external clock.
So now, I generate a list of frequencies available, with the master clock
and predivisor to use. One big caveat to this: I do not have an external
clock, so I hope it works.
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Fri, 29 Oct 2004 09:56:53 +0000 |
parents | 9430ba1a19f3 |
children | c7376efecdb5 |
line wrap: on
line source
#!/bin/sh # echo "Generating build information using aclocal, automake and autoconf" echo "This may take a while ..." # Touch the timestamps on all the files since CVS messes them up directory=`dirname $0` touch $directory/configure.in # Regenerate configuration files aclocal automake --foreign --include-deps --add-missing --copy autoconf (cd test; aclocal; automake --foreign --include-deps --add-missing --copy; autoconf) # Run configure for this platform #./configure $* echo "Now you are ready to run ./configure"