50 lines
1.6 KiB
Plaintext
50 lines
1.6 KiB
Plaintext
## For use my automake and autoconf
|
|
#
|
|
# Copyright (C) 2014-2022 Ryan Specialty Group, LLC.
|
|
#
|
|
# This file is part of TAME.
|
|
#
|
|
# 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([tame-progtest], [0.0.0])
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
|
|
AC_ARG_VAR([NODE], [The Node.js interpreter])
|
|
AC_ARG_VAR([NODE_FLAGS], [Arguments to Node.js for test runner (bin/runner)])
|
|
AC_CHECK_PROGS(NODE, [node nodejs])
|
|
|
|
test -n "$NODE" || AC_MSG_ERROR([missing Node.js])
|
|
|
|
# only needed for older versions of Node
|
|
AC_MSG_CHECKING([$NODE --harmony_destructuring])
|
|
AS_IF(["$NODE" --harmony_destructuring >/dev/null 2>/dev/null],
|
|
[AC_MSG_RESULT(available)
|
|
AC_SUBST([NODE_DESTRUCTURE], [--harmony_destructuring])],
|
|
[AC_MSG_RESULT(no)])
|
|
|
|
NODE_FLAGS="$NODE_FLAGS $NODE_DESTRUCTURE"
|
|
|
|
AC_SUBST([AUTOGENERATED],
|
|
["THIS FILE IS AUTOGENERATED! DO NOT MODIFY! See *.in."])
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_CONFIG_FILES([bin/runner],
|
|
[chmod +x bin/runner])
|
|
|
|
AC_OUTPUT
|
|
|
|
AC_MSG_NOTICE([You may now invoke \`make' to build.])
|