Spruce-Basin/build.sh
Aidan Mullen 34cd6fdc58 Modify Autotools scripts
Modify Autotools scripts to output shared library.
2024-05-03 22:00:06 -04:00

15 lines
262 B
Bash

#!/usr/bin/env sh
# Build Script
# Run Autotools
libtoolize
aclocal
autoconf
autoheader
automake --add-missing
# Run Generated Files
# Disable static linking and enable GUI component; builds complete version.
./configure --disable-static --enable-shared
make