1
0
Fork 0
liza/configure.ac

35 lines
1.3 KiB
Plaintext
Raw Normal View History

## For use my automake and autoconf
#
2016-03-30 15:00:04 -04:00
# Copyright (C) 2014, 2015, 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/>.
##
2017-01-06 13:12:16 -05:00
AC_INIT([liza], [0.8.0], [dev@lovullo.com])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign])
2014-01-17 01:20:30 -05:00
# provide more granular version numbers based on the above AC_INIT line
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
2014-01-17 01:20:30 -05:00
AC_CONFIG_FILES([Makefile doc/Makefile package.json src/version.js])
AC_OUTPUT