36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
## For use by automake and autoconf
|
|
#
|
|
# Copyright (C) 2014 Mike Gerwitz
|
|
#
|
|
# This file is part of jstonic.
|
|
#
|
|
# jstonic 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/>.
|
|
##
|
|
|
|
AC_INIT([jstonic], [0.0.1-dev], [mikegerwitz@gnu.org])
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
|
|
# provide more granular version numbers based on the above AC_INIT line (thanks
|
|
# Brandon Invergo)
|
|
m4_define([ver_split], m4_split(m4_translit(AC_PACKAGE_VERSION, [-], [.]), [\.]))
|
|
AC_SUBST(MAJOR, m4_argn(1, ver_split))
|
|
AC_SUBST(MINOR, m4_argn(2, ver_split))
|
|
AC_SUBST(REV, m4_argn(3, ver_split))
|
|
AC_SUBST(SUFFIX, m4_argn(4, ver_split))
|
|
|
|
# generate files from their *.in counterparts
|
|
AC_CONFIG_FILES([Makefile doc/Makefile package.json src/version.js])
|
|
AC_OUTPUT
|