mirror of
https://github.com/encounter/img4tool.git
synced 2026-03-30 11:16:53 -07:00
17 lines
261 B
Bash
Executable File
17 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
gprefix=`which glibtoolize 2>&1 >/dev/null`
|
|
if [ $? -eq 0 ]; then
|
|
glibtoolize --force
|
|
else
|
|
libtoolize --force
|
|
fi
|
|
aclocal -I m4
|
|
autoconf
|
|
autoheader
|
|
automake --add-missing
|
|
|
|
if [ -z $NOCONFIGURE ]; then
|
|
./configure "$@"
|
|
fi
|
|
./setBuildVersion.sh
|