2011-03-10 19:43:59 -08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Create configure and makefile stuff...
|
|
|
|
#
|
|
|
|
|
2013-09-15 00:13:30 -07:00
|
|
|
# Git hooks should come before autoreconf.
|
|
|
|
if test -d .git; then
|
2013-09-20 10:34:29 -07:00
|
|
|
if ! test -d .git/hooks; then
|
2013-09-15 00:13:30 -07:00
|
|
|
mkdir .git/hooks
|
|
|
|
fi
|
|
|
|
ln -s -f ../../pre-commit.sh .git/hooks/pre-commit
|
2015-07-30 14:24:45 -07:00
|
|
|
ln -s -f ../../pre-push.sh .git/hooks/pre-push
|
2013-09-15 00:13:30 -07:00
|
|
|
fi
|
|
|
|
|
2019-04-30 11:45:48 -07:00
|
|
|
# touch options.h (make sure it exists)
|
|
|
|
touch ./wolfssl/options.h
|
|
|
|
|
|
|
|
# touch fips files for non fips distribution
|
|
|
|
touch ./ctaocrypt/src/fips.c
|
|
|
|
touch ./ctaocrypt/src/fips_test.c
|
|
|
|
touch ./wolfcrypt/src/fips.c
|
|
|
|
touch ./wolfcrypt/src/fips_test.c
|
|
|
|
touch ./wolfcrypt/src/wolfcrypt_first.c
|
|
|
|
touch ./wolfcrypt/src/wolfcrypt_last.c
|
|
|
|
touch ./wolfssl/wolfcrypt/fips.h
|
|
|
|
|
|
|
|
# touch CAVP selftest files for non-selftest distribution
|
|
|
|
touch ./wolfcrypt/src/selftest.c
|
|
|
|
|
|
|
|
# touch async crypt files
|
|
|
|
touch ./wolfcrypt/src/async.c
|
|
|
|
touch ./wolfssl/wolfcrypt/async.h
|
|
|
|
|
|
|
|
# touch async port files
|
|
|
|
touch ./wolfcrypt/src/port/intel/quickassist.c
|
|
|
|
touch ./wolfcrypt/src/port/intel/quickassist_mem.c
|
|
|
|
touch ./wolfcrypt/src/port/cavium/cavium_nitrox.c
|
|
|
|
if [ ! -d ./wolfssl/wolfcrypt/port/intel ]; then
|
|
|
|
mkdir ./wolfssl/wolfcrypt/port/intel
|
|
|
|
fi
|
|
|
|
touch ./wolfssl/wolfcrypt/port/intel/quickassist.h
|
|
|
|
touch ./wolfssl/wolfcrypt/port/intel/quickassist_mem.h
|
|
|
|
if [ ! -d ./wolfssl/wolfcrypt/port/cavium ]; then
|
|
|
|
mkdir ./wolfssl/wolfcrypt/port/cavium
|
|
|
|
fi
|
|
|
|
touch ./wolfssl/wolfcrypt/port/cavium/cavium_nitrox.h
|
|
|
|
|
2013-09-15 00:13:30 -07:00
|
|
|
# If this is a source checkout then call autoreconf with error as well
|
2016-09-08 16:27:30 -07:00
|
|
|
if test -e .git; then
|
2012-10-26 02:06:06 -04:00
|
|
|
WARNINGS="all,error"
|
2019-04-30 11:45:48 -07:00
|
|
|
|
2012-10-26 02:06:06 -04:00
|
|
|
else
|
|
|
|
WARNINGS="all"
|
|
|
|
fi
|
|
|
|
|
|
|
|
autoreconf --install --force --verbose
|
2013-03-13 10:06:08 -07:00
|
|
|
|