35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
## Autoconf script
|
|
#
|
|
# Copyright (C) 2015 Mike Gerwitz
|
|
#
|
|
# This file is part of LaserTank.js.
|
|
#
|
|
# 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/>.
|
|
##
|
|
|
|
AC_INIT([lasertank-js], [0.0.0-dev], [mtg@gnu.org])
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
|
|
# 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
|
|
AC_CONFIG_FILES([Makefile package.json src/version.js])
|
|
AC_OUTPUT
|