mirror of
https://github.com/JHUAPL/kvspool.git
synced 2026-01-09 07:27:55 -05:00
12 lines
230 B
Bash
Executable File
12 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# THIS SCRIPT IS FOR PROJECT MAINTAINER ONLY
|
|
# It is executed only to generate "configure"
|
|
|
|
set -x
|
|
if [ ! -d config ]; then mkdir config; fi
|
|
aclocal -I config
|
|
autoheader
|
|
automake --foreign --add-missing --copy
|
|
autoconf
|