1
0
Fork 0

autogen.sh added

* autogen.sh: added
* Makefile.am: add autogen.sh to EXTRA_DIST
* README.md: reference autogen.sh
master
Mike Gerwitz 2016-03-29 14:22:28 -04:00
parent b77bc57aee
commit 768c5d5297
3 changed files with 30 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespaces=$(shell find src -type d)
nsindex=$(addsuffix /index.js, $(namespaces))
SUBDIRS = doc
EXTRA_DIST = src package.json $(path_src)/version.js README.md
EXTRA_DIST = src package.json $(path_src)/version.js README.md autogen.sh
.PHONY: FORCE todo

View File

@ -33,7 +33,7 @@ root, then you likely have the sources as committed to the project
repository; you may generate the script by issuing the following command:
```
$ autoreconf -fvi
$ ./autogen.sh
```
You may then see `./configure --help` for more information.

28
autogen.sh 100755
View File

@ -0,0 +1,28 @@
#!/bin/bash
# Autoreconf runner
#
# Copyright (C) 2016 LoVullo Associates, Inc.
#
# This file is part of liza.
#
# This program 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 <http://www.gnu.org/licenses/>.
##
which autoreconf &>/dev/null || {
echo "\`autoreconf' not found in PATH"
exit 1
}
exec autoreconf -fvi