From 37a459a25af84f888385eea85a0fbfc2420d65a4 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Thu, 21 Apr 2016 22:42:10 -0400 Subject: [PATCH] Add autogen.sh * autogen.sh: Added --- autogen.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 autogen.sh diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..54ff6a3 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,33 @@ +#!/bin/sh +# +# Generate configure script from repository +# +# Copyright (C) 2016 Free Software Foundation, Inc. +# +# This file is part of GNU ease.js. +# +# GNU ease.js is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +# This script is not necessary to configure GNU ease.js; it is provided for +# convenience. +## + + +which autoreconf >/dev/null || { + echo "fatal: missing autoreconf" >&2 + exit 1 +} + +exec autoreconf -fvi +