diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-07-22 10:01:00 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-07-22 10:01:00 (EDT) |
commit | 76c03819b6d1083975467839162cab25cf673bdc (patch) | |
tree | 1f215752639d815538bc441e405f60d8fd506329 | |
parent | ae8fb0f98c0c7776daa3594251618e0abee523e3 (diff) |
autogen.sh: New file
-rwxr-xr-x | autogen.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..969dc3a --- /dev/null +++ b/autogen.sh @@ -0,0 +1,27 @@ +#!/bin/sh +# +# Script to generate the build system. +# +# Copyright (C) 2013 Patrick "P. J." McDermott +# +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. This file is offered as-is, +# without any warranty. + +set -e + +srcdir="${0%/*}" + +{( + cd "${srcdir}" + [ -d build-aux ] || mkdir build-aux + cat >ChangeLog <<-EOF +This file is generated upon release. Run \`git log\` for a list of changes. +EOF + aclocal + autoconf + automake --add-missing --copy +)} + +"${srcdir}/configure" "${@}" |