mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-27 10:32:19 +01:00
13 lines
144 B
Bash
Executable File
13 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Create configure and makefile stuff...
|
|
#
|
|
|
|
set -e
|
|
|
|
autoreconf -ivf
|
|
aclocal -I m4
|
|
autoheader
|
|
autoconf
|
|
automake --add-missing --copy
|