Write Autotools configuration
Add Autotools configuration files for building binaries.
This commit is contained in:
parent
1de5aaf36a
commit
35560c46ea
9 changed files with 188 additions and 0 deletions
15
build.sh
Normal file
15
build.sh
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/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
|
||||
Loading…
Add table
Add a link
Reference in a new issue