mirror of
https://github.com/troydhanson/tpl.git
synced 2024-12-26 15:47:23 +08:00
12 lines
214 B
Bash
Executable File
12 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# THIS SCRIPT IS FOR PROJECT MAINTAINER ONLY
|
|
# It is executed only to generate "configure"
|
|
|
|
set -x
|
|
aclocal -I config
|
|
autoheader
|
|
libtoolize --copy --force
|
|
automake --foreign --add-missing --copy
|
|
autoconf
|