Multiple implementations (JS, Wasm, C) of a Lisp.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
AC_INIT([ptlisp], [0.1], [gabriel@pariatech.com])
|
|
|
|
|
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
LT_INIT
|
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
AS_IF([test "x$CC" = "xgcc"], [
|
|
|
|
PKG_CHECK_MODULES([CHECK], [check >= 0.9.6])
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile])
|
|
|
|
|
|
|
|
AC_OUTPUT
|