iverilog/autoconf.sh

17 lines
404 B
Bash
Raw Normal View History

2001-03-14 20:27:44 +01:00
#!/bin/sh
#
# This shell script exists to run autoconf on source distributions
# that are pulled from CVS. The configure scripts are not included
# in CVS, and there are several configure.in files, so it is easiest
# to just run this script to autoconf wherever needed.
#
echo "Autoconf in root..."
autoconf
2001-05-20 17:09:39 +02:00
for dir in vpip vvp tgt-vvp
2001-03-14 20:27:44 +01:00
do
echo "Autoconf in $dir..."
( cd $dir ; autoconf )
done