From cb7bcfad4ab0041aaf3fde3185e27ee46bb37788 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Tue, 15 Nov 2022 12:01:28 +0800 Subject: Initial commit Basic GNU standard files are added, and we now stop worrying about monadic anamorphisms. The current focus is on testing the correctness of the algorithm, so I need convenient support for manipulating, interpreting, examining, and per chance animating nondeterministic automata. --- configure.ac | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..fbf987e --- /dev/null +++ b/configure.ac @@ -0,0 +1,28 @@ +AC_PREREQ([2.60]) + +AC_INIT([REP], m4_esyscmd([./find-version.sh]), [durand@jsdurand.xyz]) + +dnl patsubst(m4_esyscmd([./find-version.sh]), ` "') + +AC_COPYRIGHT([This package is covered by GPL v3.]) + +AC_CONFIG_AUX_DIR([build-aux]) + +AM_INIT_AUTOMAKE([subdir-objects]) + +AM_SILENT_RULES([yes]) + +dnl AC_CONFIG_SUBDIRS([graph], [receme], [nfa], [repcore]) +dnl AC_CONFIG_SUBDIRS([graph]) + +AC_PATH_PROG([CARGO], [cargo], [notfound]) +AS_IF([test "$CARGO" = "notfound"], [AC_MSG_ERROR([cargo is required])]) + +AC_PATH_PROG([RUSTC], [rustc], [notfound]) +AS_IF([test "$RUSTC" = "notfound"], [AC_MSG_ERROR([rustc is required])]) + +AC_CONFIG_FILES([Makefile graph/Makefile]) + +AC_OUTPUT + + -- cgit v1.2.3-18-g5258