Spruce-Basin/build.sh
Aidan C. Mullen 724659b25f Refactor build resources
Move DUB files into /bld/d and add more instructions to README.
2025-03-05 07:44:25 -05:00

20 lines
319 B
Bash

#!/usr/bin/env sh
# Build Script
# Prepare to Build Project
mkdir ./bld
mkdir ./bld/obj
# 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