2024-11-22 16:41:06 +11:00
|
|
|
AC_INIT([The Harriman-Peikoff Project], [0.00], [latentprion@gmail.com],
|
|
|
|
|
[harikoff], [github.com/latentprion/harikoff])
|
2024-09-08 01:04:41 +10:00
|
|
|
|
2024-09-04 14:09:29 +10:00
|
|
|
# Safety checks in case user overwritten --srcdir
|
2024-11-22 20:07:42 +11:00
|
|
|
AC_CONFIG_SRCDIR([corelogic/mind.cpp])
|
2024-09-04 14:09:29 +10:00
|
|
|
|
|
|
|
|
# Store the auxiliary build tools (e.g., install-sh, config.sub, config.guess)
|
|
|
|
|
# in this dir (build-aux)
|
|
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
|
|
|
|
2024-11-22 16:41:06 +11:00
|
|
|
# Init automake, and specify this program does not follow the gnu coding standards.
|
|
|
|
|
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
|
2024-09-04 14:09:29 +10:00
|
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
|
AC_PROG_CXX
|
2024-11-22 16:41:06 +11:00
|
|
|
AC_PROG_RANLIB
|
|
|
|
|
AM_PROG_AR
|
2024-09-04 14:09:29 +10:00
|
|
|
|
2024-09-08 01:04:41 +10:00
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
|
|
2024-11-22 16:41:06 +11:00
|
|
|
AC_CONFIG_FILES([Makefile corelogic/Makefile])
|
2024-09-04 14:09:29 +10:00
|
|
|
AC_OUTPUT
|