1#!/bin/sh
2
3echo "Setting up configuration for JFK..."
4
5aclocal -I macros && \
6autoheader && \
7automake --add-missing --copy --foreign && \
8autoconf && \
9touch stamp-h.in && \
10echo "Finished, now run './configure' to proceed with the compilation."
11