Add base files for C++ and D that will interface with the existing C integration.
20 lines
319 B
Bash
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
|