Spruce-Basin/build.sh
Aidan C. Mullen dd8e9d4296 Add base files for bindings
Add base files for C++ and D that will interface with the existing C integration.
2025-03-05 00:10:19 -05:00

20 lines
319 B
Bash

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