Spruce-Basin/build.sh
Aidan Mullen 35560c46ea Write Autotools configuration
Add Autotools configuration files for building binaries.
2024-05-03 19:42:35 -04:00

15 lines
281 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 --enable-extra=yes
make