Add top level automake files

This commit is contained in:
Chase
2019-10-19 20:31:18 -05:00
committed by Jon Trulson
parent 5e05b59025
commit f2efbbce70
3 changed files with 235 additions and 0 deletions

23
cde/autogen.sh Normal file
View File

@@ -0,0 +1,23 @@
#!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
THEDIR="`pwd`"
cd "$srcdir"
DIE=0
libtoolize --force --automake
aclocal -I admin
autoconf
autoheader
automake --foreign --include-deps --add-missing
#if test -z "$*"; then
# echo "I am going to run ./configure with no arguments - if you wish "
# echo "to pass any to it, please specify them on the $0 command line."
#fi
#
#cd "$THEDIR"
#
#$srcdir/configure "$@"