1
0
Fork 0

First file woohoo

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@79
This commit is contained in:
Sjoerd van der Berg 2002-07-27 12:56:33 +00:00
parent ea3e4acd41
commit 7d1ca9bdd4

18
autogen.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/sh
#
echo "Generating build information using aclocal, auotheader, 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
autoheader
automake --gnits --include-deps --add-missing --copy
autoconf
cp $directory/settings.h.cvs $directory/settings.h
echo "Now you are ready to run ./configure also check settings.h for extra build settings"